.photo-diag-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero-camera-btn {
  width: 100%;
  min-height: 200px;
  background: var(--surface-card);
  border: 2px dashed rgba(17, 24, 39, 0.15);
  border-radius: var(--radius-card);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  text-align: center;
  padding: 20px;
  box-shadow: var(--shadow-card);
}

.hero-camera-btn:active {
  transform: scale(0.98);
  background: #F1F5F9;
}

.camera-icon-wrapper {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--bg-app);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
}

.camera-btn-title {
  font-size: 16px;
  font-weight: 700;
}

.camera-btn-sub {
  font-size: 12px;
  color: var(--text-secondary);
  margin-top: 4px;
}

.diag-result-card {
  background: var(--surface-card);
  border-radius: var(--radius-card);
  padding: var(--card-padding);
  border: var(--border-card);
  box-shadow: var(--shadow-card);
}

.diag-result-header {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 12px;
}

.diag-finding-title {
  font-size: 20px;
  font-weight: 700;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.diag-percentage {
  font-size: 16px;
  font-weight: 700;
  color: #D97706;
  background: rgba(217, 119, 6, 0.1);
  padding: 4px 12px;
  border-radius: 20px;
}

.diag-status-pill {
  font-size: 13px;
  font-weight: 600;
  color: var(--status-success);
  margin-bottom: 16px;
}

.cta-booking-btn {
  width: 100%;
  padding: 16px;
  background: var(--text-primary);
  color: #FFFFFF;
  border: none;
  border-radius: var(--radius-btn);
  font-size: 15px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
}
