/* ============================================================
   Gorgeous Hair Salon — Frontend Styles
   Premium Salon Booking Platform
   ============================================================ */

:root {
  --ghs-primary: #1a1a2e;
  --ghs-accent: #c9a96e;
  --ghs-accent-light: #f8f2e8;
  --ghs-accent-dark: #a8854d;
  --ghs-white: #ffffff;
  --ghs-bg: #fdfaf5;
  --ghs-border: #e8e2d9;
  --ghs-text: #2c2c2c;
  --ghs-text-muted: #888;
  --ghs-success: #27ae60;
  --ghs-error: #e74c3c;
  --ghs-shadow: 0 4px 24px rgba(26,26,46,.08);
  --ghs-shadow-lg: 0 16px 48px rgba(26,26,46,.14);
  --ghs-radius: var(--ghs-custom-radius, 8px);
  --ghs-font: var(--ghs-custom-font, 'Playfair Display', Georgia, serif);
  --ghs-transition: all 0.25s cubic-bezier(0.4,0,0.2,1);
}

*, *::before, *::after { box-sizing: border-box; }

/* ---- Booking Wizard ------------------------------------------ */
.ghs-booking-wrap {
  max-width: 880px;
  margin: 0 auto;
  font-family: var(--ghs-font);
  color: var(--ghs-text);
  padding: 0 20px;
}

/* Progress bar */
.ghs-progress {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 32px 0;
  position: relative;
}
.ghs-progress::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0; right: 0;
  height: 2px;
  background: var(--ghs-border);
  transform: translateY(-50%);
  z-index: 0;
}
.ghs-progress-bar {
  position: absolute;
  top: 50%;
  left: 0;
  height: 2px;
  background: var(--ghs-accent);
  transform: translateY(-50%);
  z-index: 1;
  transition: width 0.5s ease;
}
.ghs-step-indicator {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  cursor: default;
}
.ghs-step-bubble {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--ghs-white);
  border: 2px solid var(--ghs-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: var(--ghs-text-muted);
  transition: var(--ghs-transition);
  font-family: sans-serif;
}
.ghs-step-indicator.active .ghs-step-bubble {
  background: var(--ghs-primary);
  border-color: var(--ghs-primary);
  color: #fff;
  box-shadow: 0 0 0 4px rgba(26,26,46,.12);
}
.ghs-step-indicator.completed .ghs-step-bubble {
  background: var(--ghs-accent);
  border-color: var(--ghs-accent);
  color: var(--ghs-primary);
}
.ghs-step-indicator.completed .ghs-step-bubble::after {
  content: '✓';
}
.ghs-step-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--ghs-text-muted);
  text-align: center;
  white-space: nowrap;
  font-family: sans-serif;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.ghs-step-indicator.active .ghs-step-label { color: var(--ghs-primary); }
.ghs-step-indicator.completed .ghs-step-label { color: var(--ghs-accent-dark); }

/* Step panels */
.ghs-step-panel { display: none; }
.ghs-step-panel.active { display: block; animation: ghsFadeUp 0.35s ease; }

@keyframes ghsFadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

.ghs-step-title {
  font-size: 26px;
  font-weight: 700;
  color: var(--ghs-primary);
  margin-bottom: 6px;
  text-align: center;
}
.ghs-step-sub {
  font-size: 15px;
  color: var(--ghs-text-muted);
  text-align: center;
  margin-bottom: 32px;
  font-family: sans-serif;
}

/* Service & Staff cards */
.ghs-categories {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.ghs-cat-pill {
  padding: 8px 18px;
  border-radius: 24px;
  background: var(--ghs-accent-light);
  border: 1.5px solid var(--ghs-border);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  font-family: sans-serif;
  transition: var(--ghs-transition);
  color: var(--ghs-primary);
}
.ghs-cat-pill:hover, .ghs-cat-pill.active {
  background: var(--ghs-primary);
  color: #fff;
  border-color: var(--ghs-primary);
}

.ghs-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
  margin-bottom: 24px;
}
.ghs-service-card {
  background: var(--ghs-white);
  border: 2px solid var(--ghs-border);
  border-radius: var(--ghs-radius);
  padding: 20px;
  cursor: pointer;
  transition: var(--ghs-transition);
  position: relative;
}
.ghs-service-card:hover {
  border-color: var(--ghs-accent);
  box-shadow: var(--ghs-shadow);
  transform: translateY(-2px);
}
.ghs-service-card.selected {
  border-color: var(--ghs-accent);
  background: var(--ghs-accent-light);
  box-shadow: 0 0 0 3px rgba(201,169,110,.2);
}
.ghs-service-card.selected::after {
  content: '✓';
  position: absolute;
  top: 12px; right: 12px;
  width: 24px; height: 24px;
  background: var(--ghs-accent);
  color: var(--ghs-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: bold;
}
.ghs-service-name { font-size: 16px; font-weight: 700; color: var(--ghs-primary); margin-bottom: 6px; }
.ghs-service-desc { font-size: 13px; color: var(--ghs-text-muted); margin-bottom: 12px; line-height: 1.5; font-family: sans-serif; }
.ghs-service-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  font-family: sans-serif;
}
.ghs-price { font-weight: 700; color: var(--ghs-primary); font-size: 15px; }
.ghs-duration { color: var(--ghs-text-muted); }
.ghs-duration::before { content: '⏱ '; }

/* Staff cards */
.ghs-staff-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
  margin-bottom: 24px;
}
.ghs-staff-card {
  background: var(--ghs-white);
  border: 2px solid var(--ghs-border);
  border-radius: var(--ghs-radius);
  padding: 24px 20px;
  text-align: center;
  cursor: pointer;
  transition: var(--ghs-transition);
}
.ghs-staff-card:hover { border-color: var(--ghs-accent); box-shadow: var(--ghs-shadow); transform: translateY(-2px); }
.ghs-staff-card.selected { border-color: var(--ghs-accent); background: var(--ghs-accent-light); }
.ghs-staff-photo {
  width: 80px; height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 12px;
  display: block;
  border: 3px solid var(--ghs-border);
}
.ghs-staff-avatar {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: var(--ghs-primary);
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  border: 3px solid var(--ghs-border);
}
.ghs-staff-name { font-size: 16px; font-weight: 700; color: var(--ghs-primary); margin-bottom: 4px; }
.ghs-staff-role { font-size: 12px; color: var(--ghs-text-muted); text-transform: uppercase; letter-spacing: 1px; font-family: sans-serif; }

/* Date picker */
.ghs-date-section { margin-bottom: 24px; }
.ghs-calendar {
  background: var(--ghs-white);
  border: 1px solid var(--ghs-border);
  border-radius: var(--ghs-radius);
  overflow: hidden;
  box-shadow: var(--ghs-shadow);
}
.ghs-cal-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--ghs-primary);
  color: #fff;
  padding: 16px 20px;
}
.ghs-cal-nav button {
  background: rgba(255,255,255,.15);
  color: #fff;
  border: none;
  width: 34px; height: 34px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 16px;
  transition: var(--ghs-transition);
}
.ghs-cal-nav button:hover { background: rgba(255,255,255,.3); }
.ghs-cal-nav h3 { margin: 0; font-size: 16px; }
.ghs-cal-header-row { display: grid; grid-template-columns: repeat(7,1fr); }
.ghs-cal-header-cell {
  padding: 10px 0;
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: var(--ghs-accent-light);
  color: var(--ghs-primary);
  font-family: sans-serif;
}
.ghs-cal-grid { display: grid; grid-template-columns: repeat(7,1fr); }
.ghs-cal-cell {
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-family: sans-serif;
  border: 1px solid var(--ghs-border);
  cursor: default;
  color: var(--ghs-text-muted);
  transition: var(--ghs-transition);
}
.ghs-cal-cell.available {
  color: var(--ghs-primary);
  cursor: pointer;
  font-weight: 600;
}
.ghs-cal-cell.available:hover { background: var(--ghs-accent-light); color: var(--ghs-accent-dark); }
.ghs-cal-cell.selected { background: var(--ghs-primary) !important; color: #fff !important; }
.ghs-cal-cell.today { font-weight: 700; }
.ghs-cal-cell.past { opacity: 0.3; }
.ghs-cal-loading { text-align: center; padding: 40px; color: var(--ghs-text-muted); }

/* Time slots */
.ghs-slots-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
  gap: 10px;
  margin-bottom: 24px;
}
.ghs-slot {
  padding: 12px 8px;
  background: var(--ghs-white);
  border: 2px solid var(--ghs-border);
  border-radius: 8px;
  text-align: center;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  font-family: sans-serif;
  color: var(--ghs-primary);
  transition: var(--ghs-transition);
}
.ghs-slot:hover { border-color: var(--ghs-accent); background: var(--ghs-accent-light); }
.ghs-slot.selected { background: var(--ghs-primary); border-color: var(--ghs-primary); color: #fff; }
.ghs-no-slots {
  text-align: center;
  padding: 32px;
  color: var(--ghs-text-muted);
  font-family: sans-serif;
  font-size: 14px;
}

/* Booking summary */
.ghs-summary-card {
  background: var(--ghs-accent-light);
  border: 1px solid var(--ghs-border);
  border-radius: var(--ghs-radius);
  padding: 20px;
  margin-bottom: 20px;
}
.ghs-summary-card h4 {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--ghs-accent-dark);
  margin: 0 0 12px;
  font-family: sans-serif;
}
.ghs-summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 0;
  border-bottom: 1px solid rgba(0,0,0,.06);
  font-size: 14px;
  font-family: sans-serif;
}
.ghs-summary-row:last-child { border-bottom: none; font-weight: 700; font-size: 16px; }
.ghs-summary-row span:first-child { color: var(--ghs-text-muted); }

/* Customer info form */
.ghs-customer-form { max-width: 560px; margin: 0 auto; }
.ghs-form-group { margin-bottom: 18px; }
.ghs-form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--ghs-primary);
  margin-bottom: 6px;
  font-family: sans-serif;
}
.ghs-form-group label .ghs-required { color: var(--ghs-error); margin-left: 2px; }
.ghs-form-group input,
.ghs-form-group select,
.ghs-form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--ghs-border);
  border-radius: var(--ghs-radius);
  font-size: 15px;
  font-family: sans-serif;
  color: var(--ghs-text);
  background: var(--ghs-white);
  transition: border-color 0.2s;
}
.ghs-form-group input:focus,
.ghs-form-group select:focus,
.ghs-form-group textarea:focus {
  border-color: var(--ghs-accent);
  outline: none;
  box-shadow: 0 0 0 3px rgba(201,169,110,.15);
}
.ghs-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.ghs-gdpr-label { display: flex; align-items: flex-start; gap: 10px; cursor: pointer; }
.ghs-gdpr-label input { width: auto; margin-top: 2px; }
.ghs-gdpr-label span { font-size: 13px; color: var(--ghs-text-muted); font-family: sans-serif; line-height: 1.5; }

/* Payment step */
.ghs-payment-methods { display: flex; flex-direction: column; gap: 12px; margin-bottom: 24px; }
.ghs-payment-method {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px;
  background: var(--ghs-white);
  border: 2px solid var(--ghs-border);
  border-radius: var(--ghs-radius);
  cursor: pointer;
  transition: var(--ghs-transition);
}
.ghs-payment-method:hover { border-color: var(--ghs-accent); }
.ghs-payment-method.selected { border-color: var(--ghs-accent); background: var(--ghs-accent-light); }
.ghs-payment-method input[type="radio"] { margin-top: 2px; accent-color: var(--ghs-accent); }
.ghs-payment-method-label { flex: 1; }
.ghs-payment-method-label strong { display: block; color: var(--ghs-primary); margin-bottom: 3px; font-family: sans-serif; }
.ghs-payment-method-label p { font-size: 13px; color: var(--ghs-text-muted); margin: 0; font-family: sans-serif; }
.ghs-payment-icon { font-size: 24px; }

.ghs-payment-amount-choice { display: flex; gap: 12px; margin-bottom: 20px; flex-wrap: wrap; }
.ghs-amount-option {
  flex: 1;
  min-width: 180px;
  border: 2px solid var(--ghs-border);
  border-radius: var(--ghs-radius);
  padding: 16px;
  cursor: pointer;
  background: var(--ghs-white);
  transition: var(--ghs-transition);
}
.ghs-amount-option:hover { border-color: var(--ghs-accent); }
.ghs-amount-option.selected { border-color: var(--ghs-accent); background: var(--ghs-accent-light); }
.ghs-amount-option .amount-label { font-size: 13px; color: var(--ghs-text-muted); font-family: sans-serif; margin-bottom: 4px; }
.ghs-amount-option .amount-value { font-size: 22px; font-weight: 700; color: var(--ghs-primary); }
.ghs-amount-option .amount-sub { font-size: 12px; color: var(--ghs-text-muted); font-family: sans-serif; }

.ghs-bank-details {
  background: var(--ghs-accent-light);
  border: 1px dashed var(--ghs-accent);
  border-radius: var(--ghs-radius);
  padding: 16px;
  font-size: 14px;
  font-family: sans-serif;
}
.ghs-bank-details p { margin: 4px 0; }
.ghs-bank-details strong { color: var(--ghs-primary); }

/* Navigation buttons */
.ghs-nav-buttons {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 28px;
  gap: 12px;
}
.ghs-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--ghs-radius);
  font-size: 14px;
  font-weight: 700;
  font-family: sans-serif;
  cursor: pointer;
  border: 2px solid transparent;
  text-decoration: none;
  transition: var(--ghs-transition);
  letter-spacing: 0.3px;
}
.ghs-btn-primary {
  background: var(--ghs-primary);
  color: #fff;
  border-color: var(--ghs-primary);
}
.ghs-btn-primary:hover { background: var(--ghs-accent); color: var(--ghs-primary); border-color: var(--ghs-accent); }
.ghs-btn-accent {
  background: var(--ghs-accent);
  color: var(--ghs-primary);
  border-color: var(--ghs-accent);
}
.ghs-btn-accent:hover { background: var(--ghs-accent-dark); border-color: var(--ghs-accent-dark); }
.ghs-btn-ghost {
  background: transparent;
  color: var(--ghs-primary);
  border-color: var(--ghs-border);
}
.ghs-btn-ghost:hover { border-color: var(--ghs-primary); }
.ghs-btn:disabled { opacity: 0.5; cursor: not-allowed; }
.ghs-btn-sm { padding: 8px 16px; font-size: 13px; }

/* Confirmation step */
.ghs-confirmation {
  text-align: center;
  padding: 32px 0;
}
.ghs-confirmation-icon {
  width: 72px; height: 72px;
  background: #d4edda;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  margin: 0 auto 20px;
  animation: ghsCheckPop 0.5s cubic-bezier(0.36,0.07,0.19,0.97);
}
@keyframes ghsCheckPop {
  0%   { transform: scale(0); }
  60%  { transform: scale(1.15); }
  100% { transform: scale(1); }
}
.ghs-confirmation h2 { font-size: 28px; color: var(--ghs-primary); margin-bottom: 8px; }
.ghs-confirmation p { font-size: 15px; color: var(--ghs-text-muted); font-family: sans-serif; max-width: 480px; margin: 0 auto 24px; }
.ghs-confirmation-details {
  background: var(--ghs-accent-light);
  border-radius: var(--ghs-radius);
  padding: 20px;
  text-align: left;
  max-width: 440px;
  margin: 0 auto 24px;
  font-family: sans-serif;
  font-size: 14px;
}
.ghs-confirmation-row {
  display: flex;
  gap: 12px;
  padding: 6px 0;
  border-bottom: 1px solid rgba(0,0,0,.06);
}
.ghs-confirmation-row:last-child { border-bottom: none; }
.ghs-confirmation-row .label { color: var(--ghs-text-muted); min-width: 100px; }
.ghs-confirmation-row .value { font-weight: 600; color: var(--ghs-primary); }
.ghs-cal-download-btns { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin-top: 20px; }

/* Error / alert */
.ghs-alert {
  padding: 14px 18px;
  border-radius: 8px;
  font-size: 14px;
  font-family: sans-serif;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.ghs-alert-error { background: #ffeaea; border: 1px solid #f5c6cb; color: #721c24; }
.ghs-alert-success { background: #d4edda; border: 1px solid #c3e6cb; color: #155724; }
.ghs-alert-info { background: #cce5ff; border: 1px solid #b8daff; color: #004085; }

/* Loading spinner */
.ghs-spinner-wrap { text-align: center; padding: 40px; }
.ghs-spinner {
  display: inline-block;
  width: 36px; height: 36px;
  border: 3px solid rgba(201,169,110,.3);
  border-radius: 50%;
  border-top-color: var(--ghs-accent);
  animation: ghsSpin 0.8s linear infinite;
}
@keyframes ghsSpin { to { transform: rotate(360deg); } }

/* ---- Customer Account ---------------------------------------- */
.ghs-account-wrap {
  max-width: 960px;
  margin: 0 auto;
  font-family: var(--ghs-font);
  padding: 0 20px;
}
.ghs-account-nav {
  display: flex;
  gap: 0;
  border-bottom: 2px solid var(--ghs-border);
  margin-bottom: 28px;
  overflow-x: auto;
}
.ghs-account-nav a {
  padding: 12px 18px;
  font-size: 13px;
  font-weight: 600;
  font-family: sans-serif;
  color: var(--ghs-text-muted);
  text-decoration: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  white-space: nowrap;
  transition: var(--ghs-transition);
}
.ghs-account-nav a:hover { color: var(--ghs-primary); }
.ghs-account-nav a.active { color: var(--ghs-primary); border-bottom-color: var(--ghs-accent); }
.ghs-account-section { display: none; }
.ghs-account-section.active { display: block; }

/* Appointment cards */
.ghs-appt-list { display: flex; flex-direction: column; gap: 14px; }
.ghs-appt-item {
  background: var(--ghs-white);
  border: 1px solid var(--ghs-border);
  border-radius: var(--ghs-radius);
  padding: 20px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  box-shadow: var(--ghs-shadow);
}
.ghs-appt-date-block {
  background: var(--ghs-primary);
  color: #fff;
  border-radius: 8px;
  padding: 12px 16px;
  text-align: center;
  min-width: 64px;
}
.ghs-appt-date-block .day { font-size: 28px; font-weight: 700; line-height: 1; }
.ghs-appt-date-block .month { font-size: 11px; text-transform: uppercase; letter-spacing: 1px; font-family: sans-serif; }
.ghs-appt-info { flex: 1; }
.ghs-appt-info h4 { margin: 0 0 6px; color: var(--ghs-primary); font-size: 16px; }
.ghs-appt-info p { margin: 2px 0; font-size: 13px; color: var(--ghs-text-muted); font-family: sans-serif; }
.ghs-appt-actions { display: flex; gap: 8px; flex-wrap: wrap; }

/* Membership card */
.ghs-membership-status {
  background: linear-gradient(135deg, var(--ghs-primary) 0%, #2d2d5e 100%);
  color: #fff;
  border-radius: var(--ghs-radius);
  padding: 28px;
  margin-bottom: 24px;
  position: relative;
  overflow: hidden;
}
.ghs-membership-status::before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 140px; height: 140px;
  background: rgba(201,169,110,.1);
  border-radius: 50%;
}
.ghs-membership-status .level-badge {
  display: inline-block;
  background: var(--ghs-accent);
  color: var(--ghs-primary);
  padding: 4px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: sans-serif;
  margin-bottom: 12px;
}
.ghs-membership-status h3 { margin: 0 0 6px; font-size: 22px; }
.ghs-membership-status p { margin: 0; font-size: 14px; opacity: 0.8; font-family: sans-serif; }

/* ---- Memberships grid ---------------------------------------- */
.ghs-memberships-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin: 24px 0;
}
.ghs-membership-card {
  background: var(--ghs-white);
  border: 2px solid var(--ghs-border);
  border-radius: var(--ghs-radius);
  padding: 32px 24px;
  text-align: center;
  transition: var(--ghs-transition);
  position: relative;
}
.ghs-membership-card:hover { transform: translateY(-4px); box-shadow: var(--ghs-shadow-lg); }
.ghs-membership-gold { border-color: #c9a96e; }
.ghs-membership-vip { border-color: #8e44ad; background: linear-gradient(135deg, #fdfaf5 0%, #f8f0ff 100%); }
.ghs-membership-icon { font-size: 40px; margin-bottom: 16px; }
.ghs-membership-card h3 { font-size: 22px; color: var(--ghs-primary); margin-bottom: 8px; }
.ghs-membership-price { font-size: 36px; font-weight: 700; color: var(--ghs-accent-dark); margin-bottom: 20px; }
.ghs-membership-price span { font-size: 16px; font-weight: 400; color: var(--ghs-text-muted); font-family: sans-serif; }
.ghs-membership-benefits { list-style: none; padding: 0; margin: 0 0 24px; text-align: left; }
.ghs-membership-benefits li { font-size: 14px; font-family: sans-serif; padding: 6px 0; border-bottom: 1px solid var(--ghs-border); color: var(--ghs-text); }
.ghs-membership-benefits li::before { content: '✓ '; color: var(--ghs-accent-dark); font-weight: bold; }

/* ---- WooCommerce account bookings widget --------------------- */
.ghs-woo-products {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
}
.ghs-woo-product {
  background: var(--ghs-white);
  border: 1px solid var(--ghs-border);
  border-radius: var(--ghs-radius);
  padding: 16px;
  text-align: center;
  transition: var(--ghs-transition);
}
.ghs-woo-product:hover { box-shadow: var(--ghs-shadow); transform: translateY(-2px); }
.ghs-woo-product img { width: 100%; max-height: 160px; object-fit: cover; border-radius: 6px; margin-bottom: 10px; }
.ghs-woo-product h4 { font-size: 15px; margin: 0 0 6px; color: var(--ghs-primary); }
.ghs-woo-product .price { font-weight: 700; color: var(--ghs-accent-dark); margin-bottom: 10px; font-family: sans-serif; }

/* ---- Waitlist ------------------------------------------------ */
.ghs-waitlist-form { max-width: 480px; }

/* ---- Upload zone --------------------------------------------- */
.ghs-upload-zone {
  border: 2px dashed var(--ghs-border);
  border-radius: var(--ghs-radius);
  padding: 32px;
  text-align: center;
  cursor: pointer;
  font-family: sans-serif;
  color: var(--ghs-text-muted);
  transition: var(--ghs-transition);
}
.ghs-upload-zone:hover { border-color: var(--ghs-accent); background: var(--ghs-accent-light); }
.ghs-upload-zone .icon { font-size: 32px; margin-bottom: 8px; }

/* ---- Login notice -------------------------------------------- */
.ghs-login-notice {
  background: var(--ghs-accent-light);
  border: 1px solid var(--ghs-border);
  border-radius: var(--ghs-radius);
  padding: 20px;
  font-family: sans-serif;
  text-align: center;
}

/* ---- Staff list shortcode ------------------------------------ */
.ghs-staff-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
  margin: 20px 0;
}
.ghs-staff-bio { font-size: 13px; color: var(--ghs-text-muted); margin-top: 8px; font-family: sans-serif; line-height: 1.5; }

/* ---- Responsive ---------------------------------------------- */
@media (max-width: 680px) {
  .ghs-progress { gap: 0; }
  .ghs-step-label { display: none; }
  .ghs-form-row { grid-template-columns: 1fr; }
  .ghs-nav-buttons { flex-direction: column; }
  .ghs-nav-buttons .ghs-btn { width: 100%; justify-content: center; }
  .ghs-services-grid { grid-template-columns: 1fr; }
  .ghs-staff-grid { grid-template-columns: 1fr 1fr; }
  .ghs-appt-item { flex-direction: column; }
}
