/* ============================================
   BHARATIEA — Light Theme (lovable.dev inspired)
   Bg: #FFFBF5  Cards: #FFFFFF  Text: #111827
   Gradient: #C2185B → #E64A19 (Rose → Saffron)
   Fonts: Inter (body + display)
   ============================================ */

/* ---------- Reset & Base ---------- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --orange: #C2185B;
  --orange-light: rgba(194,24,91,0.08);
  --orange-hover: #9C1348;
  --gradient: linear-gradient(135deg, #C2185B 0%, #E64A19 100%);
  --gradient-hover: linear-gradient(135deg, #9C1348 0%, #C43C13 100%);
  --primary: #C2185B;
  --accent: #E64A19;
  --dark: #111827;
  --dark-2: #FFFFFF;
  --dark-3: #F9FAFB;
  --dark-4: #F3F4F6;
  --text: #111827;
  --text-light: #374151;
  --text-muted: #6B7280;
  --bg: #FFFBF5;
  --bg-light: #FDF6ED;
  --bg-card: #FFFFFF;
  --border: #E5E7EB;
  --border-light: #F3F4F6;
  --success: #059669;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.08), 0 2px 4px rgba(0,0,0,0.04);
  --shadow-lg: 0 10px 30px rgba(0,0,0,0.10), 0 4px 8px rgba(0,0,0,0.06);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-pill: 9999px;
  --radius-btn: 12px;
  --max-width: 1280px;
  --nav-height: 72px;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-display: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

html { font-size: 16px; scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
button { cursor: pointer; font-family: inherit; }
ul, ol { list-style: none; }

.container { max-width: var(--max-width); margin: 0 auto; padding: 0 40px; }

/* ---------- Typography ---------- */
h1 { font-family: var(--font-display); font-size: 2.5rem; font-weight: 700; line-height: 1.18; color: var(--text); letter-spacing: -0.5px; font-style: normal; }
h2 { font-family: var(--font-display); font-size: 2.25rem; font-weight: 700; line-height: 1.22; color: var(--text); letter-spacing: -0.6px; font-style: normal; }
h3 { font-size: 1.15rem; font-weight: 600; line-height: 1.4; color: var(--text); }
h4 { font-size: 1rem; font-weight: 500; line-height: 1.5; color: var(--text); }
p { font-size: 1rem; line-height: 1.7; color: var(--text-light); }
.text-sm { font-size: 0.875rem; }
.text-xs { font-size: 0.75rem; }
.text-orange { color: var(--orange); }
.text-muted { color: var(--text-muted); }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }

/* ---------- Navigation ---------- */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #fff;
  border-bottom: 1px solid var(--border);
  height: var(--nav-height);
  box-shadow: 0 1px 8px rgba(0,0,0,0.06);
}
.navbar .container {
  display: flex;
  align-items: center;
  gap: 20px;
  height: 100%;
}
.nav-logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: 2px;
  flex-shrink: 0;
  font-style: normal;
}
.logo-mark {
  display: block;
  width: 32px;
  height: 32px;
  border-radius: 9px;
  object-fit: cover;
  flex-shrink: 0;
}

/* --- Nav Center --- */
.nav-center {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1;
  min-width: 0;
}

/* Services Dropdown */
.nav-services-dropdown { position: relative; }
.nav-services-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-light);
  padding: 8px 4px;
  cursor: pointer;
  white-space: nowrap;
  font-family: var(--font);
}
.nav-services-btn:hover { color: var(--orange); }
.nav-services-btn svg { transition: transform 0.2s; }
.nav-services-dropdown.open .nav-services-btn svg { transform: rotate(180deg); }
.nav-services-dropdown.open .nav-services-btn { color: var(--orange); }

.services-mega-menu {
  display: none;
  position: absolute;
  top: calc(100% + 16px);
  left: -40px;
  background: var(--dark-3);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  padding: 28px 32px;
  z-index: 1001;
  min-width: 640px;
}
.nav-services-dropdown.open .services-mega-menu { display: block; }
.mega-menu-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.mega-col h5 {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--orange);
  margin-bottom: 12px;
}
.mega-col a {
  display: block;
  font-size: 0.875rem;
  color: var(--text-light);
  padding: 5px 0;
  transition: color 0.15s;
}
.mega-col a:hover { color: var(--orange); }
.mega-col-highlight {
  background: rgba(215,105,9,0.08);
  margin: -28px -32px -28px 0;
  padding: 28px 24px;
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  border-left: 1px solid var(--border);
}

/* Location Selector */
.nav-location { position: relative; }
.nav-location-btn {
  display: flex;
  align-items: center;
  gap: 5px;
  background: none;
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  padding: 7px 14px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-light);
  cursor: pointer;
  white-space: nowrap;
  font-family: var(--font);
}
.nav-location-btn:hover { border-color: var(--orange); }
.nav-location-btn svg:first-child { stroke: var(--orange); }
.location-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--dark-3);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  min-width: 160px;
  z-index: 1001;
  overflow: hidden;
}
.nav-location.open .location-dropdown { display: block; }
.location-option {
  display: block;
  padding: 10px 16px;
  font-size: 0.875rem;
  color: var(--text-light);
  transition: background 0.15s;
}
.location-option:hover { background: var(--dark-4); }
.location-option.active { color: var(--orange); font-weight: 600; background: var(--orange-light); }

/* Search Bar */
.nav-search {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  padding: 8px 16px;
  flex: 1;
  max-width: 360px;
  min-width: 160px;
  transition: border-color 0.2s;
}
.nav-search:focus-within { border-color: var(--orange); }
.nav-search svg { flex-shrink: 0; }
.nav-search-input {
  border: none;
  outline: none;
  background: transparent;
  font-size: 0.8125rem;
  color: var(--text);
  width: 100%;
  font-family: var(--font);
}
.nav-search-input::placeholder { color: var(--text-muted); }

/* Nav Right */
.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}
.nav-login-btn {
  background: none;
  border: none;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-light);
  cursor: pointer;
  white-space: nowrap;
  padding: 8px 4px;
  font-family: var(--font);
}
.nav-login-btn:hover { color: var(--orange); }
.nav-cart-btn {
  position: relative;
  background: none;
  border: none;
  color: var(--text-light);
  padding: 4px;
  cursor: pointer;
}
.nav-cart-btn:hover { color: var(--orange); }
.cart-badge {
  position: absolute;
  top: -4px;
  right: -6px;
  background: var(--orange);
  color: #fff;
  font-size: 0.625rem;
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

/* Login Modal */
.login-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
}
.login-modal-overlay.active { display: flex; }
.login-modal {
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  max-width: 420px;
  width: 90%;
  position: relative;
}

/* Mobile Menu */
.nav-mobile-menu { display: none; }

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  transition: 0.3s;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 36px;
  border-radius: var(--radius-btn);
  font-weight: 600;
  font-size: 0.9375rem;
  border: none;
  transition: all 0.2s;
  gap: 8px;
  letter-spacing: 0.3px;
  font-family: var(--font);
}
.btn-primary {
  background: var(--gradient);
  color: #fff;
  border: none;
}
.btn-primary:hover { background: var(--gradient-hover); transform: translateY(-1px); box-shadow: 0 4px 20px rgba(194,24,91,0.35); }
.btn-secondary {
  background: transparent;
  color: var(--orange);
  border: 1.5px solid var(--orange);
}
.btn-secondary:hover { background: var(--orange-light); }
.btn-dark {
  background: var(--dark-3);
  color: var(--text);
  border: 1px solid var(--border);
}
.btn-dark:hover { border-color: var(--orange); color: var(--orange); }
.btn-white {
  background: #fff;
  color: var(--primary);
  border: 1.5px solid var(--border);
}
.btn-white:hover { background: var(--bg-light); }
.btn-sm { padding: 10px 24px; font-size: 0.8125rem; }
.btn-lg { padding: 16px 44px; font-size: 1rem; }
.btn-block { width: 100%; }
.btn-link {
  background: none;
  border: none;
  color: var(--orange);
  font-weight: 600;
  padding: 0;
  font-size: 0.9375rem;
}
.btn-link:hover { text-decoration: underline; }

/* ---------- Hero Section ---------- */
.hero {
  background: var(--bg-light);
  padding: 80px 0 64px;
  position: relative;
  overflow: hidden;
}
.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.hero-content { position: relative; z-index: 2; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  padding: 6px 16px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 28px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.hero-badge .dot {
  width: 8px;
  height: 8px;
  background: var(--success);
  border-radius: 50%;
}
.hero h1 {
  font-size: 2.75rem;
  line-height: 1.18;
  margin-bottom: 8px;
  letter-spacing: -0.5px;
}
.hero h1 .highlight { color: var(--orange); font-style: normal; }
.hero-subtitle {
  font-size: 1.25rem;
  font-weight: 300;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.hero-desc {
  font-size: 1rem;
  color: var(--text-light);
  margin-bottom: 36px;
  max-width: 460px;
  line-height: 1.7;
}
.hero-actions { display: flex; gap: 20px; align-items: center; }
.hero-image {
  position: relative;
  height: 460px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}
.hero-image .placeholder-img {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--bg-light) 0%, var(--border) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.875rem;
  text-align: center;
  padding: 24px;
  border-radius: var(--radius-lg);
}

/* ---------- Section Spacing ---------- */
.section { padding: 96px 0; }
.section-light { background: var(--bg-light); }
.section-dark { background: linear-gradient(135deg, #1a1a2e 0%, #111827 100%); }
.section-dark h2, .section-dark h3 { color: #fff; font-style: normal; }
.section-dark p { color: rgba(255,255,255,0.75); }
.section-dark .stat-card { background: rgba(255,255,255,0.07); border-color: rgba(255,255,255,0.12); }
.section-dark .stat-value { color: var(--orange); }
.section-dark .stat-label { color: rgba(255,255,255,0.65); }
.section-dark .section-header h2 { color: #fff; }
.section-dark .section-header p { color: rgba(255,255,255,0.75); }
.section-orange { background: var(--orange); color: #fff; }
.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}
.section-header h2 { margin-bottom: 16px; }
.section-header p { font-size: 1rem; }

/* Section label (uppercase tracked) */
.section-label {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--orange);
  margin-bottom: 12px;
  display: block;
}

/* ---------- How It Works ---------- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}
.step-card {
  text-align: center;
  padding: 36px 20px;
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
}
.step-number {
  width: 52px;
  height: 52px;
  background: var(--orange);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.25rem;
  margin: 0 auto 24px;
}
.step-card h3 { margin-bottom: 12px; font-size: 1rem; }
.step-card p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.6; }
.step-connector {
  position: absolute;
  top: 60px;
  right: -20px;
  width: 40px;
  height: 1px;
  background: var(--border);
}
.step-card:last-child .step-connector { display: none; }

/* ---------- Service Category Cards ---------- */
.category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.category-card {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all 0.25s ease;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
}
.category-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--orange);
}
.category-card-img {
  height: 200px;
  background: linear-gradient(135deg, #1E1B24 0%, #252231 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.8125rem;
  text-align: center;
  padding: 16px;
}
.category-card-body {
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.category-card-body h3 { font-size: 1rem; margin-bottom: 6px; font-weight: 600; }
.category-card-body p { font-size: 0.875rem; margin-bottom: 12px; line-height: 1.5; color: var(--text-muted); }
/* Everything above the price/link block flexes; the footer stays pinned to the
   card bottom so all four cards line up regardless of description length. */
.category-card-footer { margin-top: auto; padding-top: 12px; }
.category-card-price {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--orange);
}
.category-card-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--orange);
  font-weight: 600;
  font-size: 0.875rem;
  margin-top: 8px;
  text-decoration: none;
}
.category-card-link::after { content: ' →'; }

/* ---------- Trust Strip ---------- */
.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.trust-item {
  text-align: center;
  padding: 28px 20px;
}
.trust-icon {
  width: 52px;
  height: 52px;
  background: var(--orange-light);
  border: 1px solid rgba(215,105,9,0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  font-size: 1.5rem;
}
.trust-item h4 { font-size: 0.9375rem; margin-bottom: 6px; }
.trust-item p { font-size: 0.8125rem; color: var(--text-muted); line-height: 1.5; }

/* ---------- Occasion Grid ---------- */
.occasion-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.occasion-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  text-align: center;
  transition: all 0.2s;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.occasion-card:hover {
  border-color: var(--orange);
  background: var(--orange-light);
  transform: translateY(-2px);
}
.occasion-icon { font-size: 2rem; margin-bottom: 4px; }
.occasion-card h4 { font-size: 0.9375rem; font-weight: 500; color: var(--text-light); }

/* ---------- Testimonials ---------- */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px;
  box-shadow: var(--shadow-sm);
}
.testimonial-stars { color: var(--orange); font-size: 0.875rem; margin-bottom: 16px; letter-spacing: 2px; }
.testimonial-card blockquote {
  font-family: var(--font-display);
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-light);
  margin-bottom: 24px;
  font-style: normal;
}
.testimonial-author {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text);
}
.testimonial-location {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

/* ---------- CTA Section ---------- */
.cta-section {
  background: var(--gradient);
  padding: 80px 0;
  text-align: center;
}
.cta-section h2 { color: #fff; margin-bottom: 16px; font-style: normal; }
.cta-section p { color: rgba(255,255,255,0.85); margin-bottom: 36px; max-width: 500px; margin-left: auto; margin-right: auto; font-size: 1rem; }
.cta-section .btn-primary { background: #fff; color: var(--primary); }
.cta-section .btn-primary:hover { background: rgba(255,255,255,0.92); box-shadow: 0 4px 16px rgba(0,0,0,0.2); }

/* ---------- Pricing Tables ---------- */
.pricing-section { margin-bottom: 56px; }
.pricing-section h3 {
  font-size: 1.3rem;
  margin-bottom: 8px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--orange);
  display: inline-block;
}
.pricing-intro {
  font-size: 0.95rem;
  margin-bottom: 24px;
  max-width: 700px;
  color: var(--text-light);
}
.pricing-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
}
.pricing-table thead th {
  background: var(--dark-3);
  color: var(--text);
  padding: 14px 20px;
  text-align: left;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.pricing-table tbody td {
  padding: 14px 20px;
  font-size: 0.9rem;
  border-bottom: 1px solid var(--border-light);
  vertical-align: middle;
  background: var(--dark-2);
  color: var(--text-light);
}
.pricing-table tbody tr:last-child td { border-bottom: none; }
.pricing-table tbody tr:nth-child(even) td { background: var(--bg-card); }
.pricing-table tbody tr:hover td { background: rgba(215,105,9,0.07); }
.pricing-table .price-col {
  font-weight: 600;
  color: var(--orange);
  white-space: nowrap;
}
.pricing-table .book-btn {
  background: var(--orange);
  color: #fff;
  border: none;
  padding: 8px 22px;
  border-radius: var(--radius-btn);
  font-size: 0.8125rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  font-family: var(--font);
}
.pricing-table .book-btn:hover { background: var(--orange-hover); }

.pricing-note {
  margin-top: 16px;
  padding: 16px 20px;
  background: rgba(215,105,9,0.1);
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  color: var(--text-light);
  border-left: 3px solid var(--orange);
}

/* ---------- Tiers ---------- */
.tiers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 32px;
}
.tier-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px;
  text-align: center;
  transition: all 0.3s;
  background: var(--bg-card);
}
.tier-card:hover { border-color: var(--orange); }
.tier-card.featured {
  border-color: var(--orange);
  box-shadow: 0 0 0 1px var(--orange);
  position: relative;
}
.tier-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--orange);
  color: #fff;
  padding: 4px 16px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
}
.tier-card h4 { font-size: 1.2rem; margin-bottom: 4px; }
.tier-price { font-size: 0.9rem; color: var(--orange); font-weight: 600; margin-bottom: 16px; }
.tier-card p { font-size: 0.85rem; color: var(--text-muted); }

/* ---------- Package Cards ---------- */
.package-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.package-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px;
  transition: all 0.25s;
  background: var(--bg-card);
}
.package-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--orange); }
.package-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 16px;
}
.package-card h3 { font-size: 1.15rem; }
.package-price {
  background: var(--orange-light);
  color: var(--orange);
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 0.8125rem;
  white-space: nowrap;
  border: 1px solid rgba(215,105,9,0.3);
}
.package-includes {
  margin: 16px 0;
}
.package-includes li {
  padding: 6px 0;
  font-size: 0.9rem;
  color: var(--text-light);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.package-includes li::before {
  content: '✓';
  color: var(--success);
  font-weight: 700;
  flex-shrink: 0;
}
.package-best {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-style: normal;
  margin-bottom: 16px;
}

/* ---------- Booking Form ---------- */
.booking-container {
  max-width: 720px;
  margin: 0 auto;
}
.form-step {
  margin-bottom: 36px;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--border);
}
.form-step:last-child { border-bottom: none; }
.form-step-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.form-step-num {
  width: 32px;
  height: 32px;
  background: var(--orange);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
}
.form-step-header h3 { font-size: 1rem; }

.form-group { margin-bottom: 20px; }
.form-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-muted);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.9375rem;
  font-family: inherit;
  transition: border-color 0.2s;
  background: var(--dark-3);
  color: var(--text);
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(215,105,9,0.12);
}
.form-textarea { min-height: 100px; resize: vertical; }
.form-select option { background: var(--dark-3); }

.form-radio-group,
.form-check-group { display: flex; flex-direction: column; gap: 10px; }
.form-radio,
.form-check {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.2s;
  background: var(--dark-3);
}
.form-radio:hover,
.form-check:hover { border-color: var(--orange); background: var(--orange-light); }
.form-radio input,
.form-check input { accent-color: var(--orange); width: 18px; height: 18px; }
.form-radio-label,
.form-check-label { font-size: 0.9rem; color: var(--text-light); }
.form-radio-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-left: 28px;
  margin-top: -4px;
}

.form-count {
  display: flex;
  align-items: center;
  gap: 16px;
}
.form-count button {
  width: 40px;
  height: 40px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--dark-3);
  color: var(--text);
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  font-family: var(--font);
}
.form-count button:hover { border-color: var(--orange); color: var(--orange); }
.form-count .count-value {
  font-size: 1.2rem;
  font-weight: 600;
  min-width: 40px;
  text-align: center;
  color: var(--text);
}

.form-time-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.time-slot {
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  text-align: center;
  cursor: pointer;
  transition: all 0.2s;
  font-size: 0.85rem;
  background: var(--dark-3);
  color: var(--text-light);
}
.time-slot:hover,
.time-slot.selected { border-color: var(--orange); background: var(--orange-light); color: var(--orange); font-weight: 600; }
.time-slot .slot-label { font-weight: 600; display: block; }
.time-slot .slot-desc { font-size: 0.75rem; color: var(--text-muted); }

/* Order summary */
.order-summary {
  background: var(--dark-3);
  border-radius: var(--radius-md);
  padding: 24px;
  border: 1px solid var(--border);
}
.order-summary h3 { margin-bottom: 16px; font-size: 1.05rem; }
.order-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  font-size: 0.9rem;
  color: var(--text-light);
}
.order-row.total {
  border-top: 2px solid var(--border);
  margin-top: 8px;
  padding-top: 12px;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--text);
}
.payment-methods {
  display: flex;
  gap: 12px;
  margin: 16px 0;
  flex-wrap: wrap;
}
.payment-method {
  padding: 10px 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.2s;
  background: var(--dark-3);
  color: var(--text-light);
}
.payment-method:hover,
.payment-method.selected { border-color: var(--orange); background: var(--orange-light); color: var(--orange); }
.prepaid-note {
  background: rgba(215,105,9,0.08);
  border: 1px solid rgba(215,105,9,0.25);
  border-radius: var(--radius-sm);
  padding: 16px;
  font-size: 0.85rem;
  margin-top: 16px;
  color: var(--text-light);
}
.prepaid-note strong { color: var(--text); }

/* ---------- FAQ ---------- */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 0;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: var(--font);
}
.faq-question::after {
  content: '+';
  font-size: 1.4rem;
  color: var(--orange);
  font-weight: 300;
  transition: transform 0.3s;
  flex-shrink: 0;
}
.faq-item.open .faq-question::after {
  content: '−';
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-item.open .faq-answer { max-height: 600px; }
.faq-answer-inner {
  padding: 0 0 20px;
  font-size: 0.925rem;
  line-height: 1.7;
  color: var(--text-muted);
}
.faq-answer-inner table {
  width: 100%;
  margin: 12px 0;
  border-collapse: collapse;
}
.faq-answer-inner table th,
.faq-answer-inner table td {
  padding: 10px 16px;
  text-align: left;
  font-size: 0.85rem;
  border-bottom: 1px solid var(--border);
  color: var(--text-light);
}
.faq-answer-inner table th { background: var(--dark-3); font-weight: 600; color: var(--text); }

/* ---------- Expert/Join Page ---------- */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin: 40px 0;
}
.stat-card {
  text-align: center;
  padding: 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
}
.stat-card .stat-value {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--orange);
  margin-bottom: 4px;
  font-style: normal;
}
.stat-card .stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.comparison-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  margin: 24px 0;
}
.comparison-table th {
  padding: 14px 20px;
  text-align: left;
  font-size: 0.85rem;
  font-weight: 600;
}
.comparison-table th:first-child { background: var(--dark-3); color: var(--text-muted); }
.comparison-table th:nth-child(2) { background: var(--orange); color: #fff; }
.comparison-table th:nth-child(3) { background: var(--dark-4); color: var(--text-muted); }
.comparison-table td {
  padding: 12px 20px;
  font-size: 0.85rem;
  border-bottom: 1px solid var(--border);
  background: var(--dark-2);
  color: var(--text-light);
}
.comparison-table tr:last-child td { border-bottom: none; }
.comparison-table td:nth-child(2) { background: rgba(215,105,9,0.08); font-weight: 500; color: var(--text); }

.career-path {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: 32px 0;
}
.career-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px;
  position: relative;
  background: var(--bg-card);
}
.career-card.highlighted { border-color: var(--orange); background: rgba(215,105,9,0.07); }
.career-level {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 8px;
}
.career-card h4 { font-size: 1rem; margin-bottom: 8px; }
.career-income {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--success);
  margin-bottom: 8px;
}
.career-card p { font-size: 0.8rem; color: var(--text-muted); }

/* ---------- Contact Page ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
.contact-method {
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  margin-bottom: 16px;
  transition: border-color 0.2s;
  background: var(--bg-card);
}
.contact-method:hover { border-color: var(--orange); }
.contact-method h4 { margin-bottom: 4px; }
.contact-method p { font-size: 0.9rem; color: var(--text-muted); }
.contact-method .contact-value {
  display: block;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--orange);
  margin-top: 4px;
  text-decoration: none;
}
a.contact-value:hover { text-decoration: underline; }

.service-areas {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 32px;
}
.area-card {
  padding: 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
}
.area-card h4 { margin-bottom: 8px; color: var(--orange); }
.area-card p { font-size: 0.875rem; color: var(--text-muted); }

/* ---------- Footer ---------- */
.footer {
  background: var(--dark-2);
  border-top: 1px solid var(--border);
  color: var(--text-muted);
  padding: 72px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand .nav-logo { margin-bottom: 12px; }
.footer-brand p { font-size: 0.875rem; color: var(--text-muted); margin-bottom: 12px; }
.footer h4 {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  font-size: 0.875rem;
  color: var(--text-muted);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--orange); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: var(--text-muted);
}
.footer-social { display: flex; gap: 16px; }
.footer-social a {
  color: var(--text-muted);
  font-size: 0.85rem;
  transition: color 0.2s;
}
.footer-social a:hover { color: var(--orange); }

/* ---------- WhatsApp Float ---------- */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(37,211,102,0.35);
  transition: transform 0.3s;
  color: #fff;
  font-size: 1.6rem;
}
.whatsapp-float:hover { transform: scale(1.1); }
.whatsapp-float svg { width: 28px; height: 28px; fill: #fff; }
/* Lift the WhatsApp bubble above the floating cart bar so it never covers the
   View Cart / Proceed button when the cart has items. */
body:has(.cart-float-bar.visible) .whatsapp-float { bottom: 92px; }

/* ---------- Inline button spinner (revolving circle) ---------- */
@keyframes btn-spin { to { transform: rotate(360deg); } }
.btn-spinner {
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-right: 8px;
  vertical-align: -3px;
  border: 2px solid rgba(255,255,255,0.4);
  border-top-color: #fff;
  border-radius: 50%;
  animation: btn-spin 0.7s linear infinite;
}

/* ---------- Modal (shared: login modal close button) ---------- */
.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--text-muted);
  cursor: pointer;
}

/* ---------- About Page ---------- */
.about-content { max-width: 780px; }
.about-content h2 { margin-bottom: 20px; }
.about-content p { margin-bottom: 16px; font-size: 1.05rem; color: var(--text-light); }
.about-content h3 { margin-top: 40px; margin-bottom: 12px; }

.diff-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin: 32px 0;
}
.diff-card {
  padding: 24px;
  border-radius: var(--radius-md);
}
.diff-card.ours { background: rgba(215,105,9,0.1); border: 1px solid rgba(215,105,9,0.3); }
.diff-card.theirs { background: var(--bg-card); border: 1px solid var(--border); }
.diff-card h4 { margin-bottom: 8px; font-size: 1rem; }
.diff-card p { font-size: 0.9rem; color: var(--text-muted); }

/* ---------- Page Hero (inner pages) ---------- */
.page-hero {
  background: var(--bg-light);
  border-bottom: 1px solid var(--border);
  padding: 56px 0;
}
.page-hero h1 { font-size: 2.25rem; margin-bottom: 12px; }
.page-hero p { font-size: 1rem; max-width: 560px; color: var(--text-muted); }

/* ---------- Confirmation ---------- */
.confirmation-box {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  padding: 48px 32px;
}
.confirm-icon {
  width: 72px;
  height: 72px;
  background: var(--success);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 24px;
}
.confirm-steps {
  text-align: left;
  margin: 32px 0;
  padding: 24px;
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
}
.confirm-steps li {
  padding: 10px 0;
  font-size: 0.9rem;
  display: flex;
  gap: 12px;
  border-bottom: 1px solid var(--border);
  color: var(--text-light);
}
.confirm-steps li:last-child { border-bottom: none; }
.confirm-steps .step-num {
  width: 24px;
  height: 24px;
  background: var(--orange);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .hero .container { grid-template-columns: 1fr; gap: 40px; }
  .hero-image { height: 320px; }
  .category-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .step-connector { display: none; }
  .trust-strip { grid-template-columns: repeat(2, 1fr); }
  .testimonial-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .career-path { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .section { padding: 72px 0; }
}

@media (max-width: 768px) {
  h1 { font-size: 1.875rem; }
  h2 { font-size: 1.625rem; }
  .container { padding: 0 24px; }
  .hero { padding: 48px 0 40px; }
  .hero h1 { font-size: 2rem; }
  .hero-subtitle { font-size: 1.125rem; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .section { padding: 56px 0; }
  /* !important so the per-page inline grid overrides (e.g. join.html's
     repeat(3,1fr) on steps/category grids) still collapse on mobile. */
  .category-grid { grid-template-columns: 1fr 1fr !important; gap: 16px; }
  .steps-grid { grid-template-columns: 1fr !important; }
  .occasion-grid { grid-template-columns: repeat(2, 1fr); }
  .package-grid { grid-template-columns: 1fr; }
  .tiers-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .diff-grid { grid-template-columns: 1fr; }
  .service-areas { grid-template-columns: 1fr; }
  .form-time-grid { grid-template-columns: repeat(2, 1fr); }

  .nav-center { display: none; }
  .nav-right { display: none; }
  .nav-hamburger { display: flex; }

  .nav-mobile-menu {
    display: none;
    position: absolute;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background: var(--dark-2);
    padding: 20px 24px;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
    z-index: 999;
    max-height: 80vh;
    overflow-y: auto;
  }
  .nav-mobile-menu.open { display: block; }
  .nav-mobile-menu .nav-search {
    display: flex;
    max-width: 100%;
    margin-bottom: 16px;
  }
  .nav-mobile-menu .nav-location-btn {
    width: 100%;
    justify-content: flex-start;
    margin-bottom: 16px;
  }
  .nav-mobile-menu .mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 4px;
  }
  .nav-mobile-menu .mobile-nav-links a {
    display: block;
    padding: 10px 0;
    font-size: 0.9375rem;
    color: var(--text-light);
    border-bottom: 1px solid var(--border);
  }
  .nav-mobile-menu .mobile-nav-links a:hover { color: var(--orange); }
  .nav-mobile-menu .mobile-nav-section-title {
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--orange);
    margin-top: 16px;
    margin-bottom: 4px;
  }
  .nav-mobile-menu .mobile-nav-actions {
    display: flex;
    gap: 12px;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
  }
  .nav-mobile-menu .mobile-nav-actions button {
    flex: 1;
    padding: 10px;
    border-radius: var(--radius-pill);
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    font-family: var(--font);
  }
  .mobile-login-btn {
    background: none;
    border: 1px solid var(--border);
    color: var(--text-light);
  }
  .mobile-cart-btn {
    background: var(--orange);
    border: none;
    color: #fff;
  }

  .pricing-table { font-size: 0.8125rem; }
  .pricing-table thead th,
  .pricing-table tbody td { padding: 10px 14px; }

  /* Comparison table: shrink cell padding/font so 3 columns fit within a
     phone width instead of pushing the page into horizontal scroll. */
  .comparison-table { table-layout: fixed; }
  .comparison-table th,
  .comparison-table td { padding: 10px 10px; font-size: 0.75rem; word-break: break-word; }

  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .page-hero { padding: 40px 0; }
  .page-hero h1 { font-size: 1.875rem; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero h1 { font-size: 1.75rem; }
  .category-grid { grid-template-columns: 1fr !important; }
  .occasion-grid { grid-template-columns: 1fr; }
  .trust-strip { grid-template-columns: 1fr; }
  .career-path { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .section { padding: 48px 0; }
}

/* ============================================
   Hero Service Picker
   ============================================ */
.hero-picker {
  background: var(--dark-2);
  padding: 52px 0 44px;
  border-bottom: 1px solid var(--border);
}
.hero-picker-title {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 10px;
  color: var(--text);
  letter-spacing: -0.4px;
  font-style: normal;
}
.hero-picker-sub {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.9375rem;
  margin-bottom: 40px;
}
.hero-picker-sub strong { color: var(--text-light); font-weight: 600; }

.service-tiles {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 8px;
  margin-bottom: 36px;
}
.service-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 16px 8px 12px;
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: background 0.2s;
  cursor: pointer;
}
.service-tile:hover { background: var(--orange-light); }
.service-tile-img {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  flex-shrink: 0;
  background: var(--dark-3) !important;
  border: 1px solid var(--border);
}
.service-tile-name {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-light);
  text-align: center;
  line-height: 1.35;
  /* Reserve two lines so single- and double-line labels keep the price
     row baseline-aligned across the whole grid (uniform UC-style tiles). */
  min-height: 2.7em;
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-tile-price {
  font-size: 0.6875rem;
  color: var(--text-muted);
}
.hero-trust-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  font-size: 0.8125rem;
  color: var(--text-muted);
  flex-wrap: wrap;
}
.trust-rating { color: var(--orange); font-weight: 700; }
.trust-sep { color: var(--border); }

/* ============================================
   UC-Style Services Page
   ============================================ */

.services-page-layout {
  display: flex;
  min-height: calc(100vh - var(--nav-height));
}
.services-sidebar {
  width: 220px;
  flex-shrink: 0;
  border-right: 1px solid var(--border);
  padding: 24px 0;
  position: sticky;
  top: var(--nav-height);
  height: calc(100vh - var(--nav-height));
  overflow-y: auto;
  background: var(--dark-2);
}
.sidebar-section-label {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--orange);
  padding: 14px 20px 6px;
}
.sidebar-cat-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  font-size: 0.875rem;
  color: var(--text-muted);
  transition: all 0.15s;
  border-left: 3px solid transparent;
  text-decoration: none;
}
.sidebar-cat-link:hover { color: var(--orange); background: var(--orange-light); border-left-color: var(--orange); }
.sidebar-cat-link.active { color: var(--orange); font-weight: 600; border-left-color: var(--orange); background: var(--orange-light); }
.sidebar-cat-icon { font-size: 1rem; line-height: 1; }

.services-main {
  flex: 1;
  padding: 32px 48px 160px;
  max-width: 900px;
  background: var(--bg);
}
.services-section { margin-bottom: 40px; }
.services-section-hdr {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 4px;
}
.services-section-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
}
.services-section-count {
  font-size: 0.8125rem;
  color: var(--text-muted);
}
.services-section-intro {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
  line-height: 1.55;
}

/* Service card */
.service-card-uc {
  display: flex;
  gap: 20px;
  padding: 26px 0;
  border-bottom: 1px solid var(--border-light);
  align-items: flex-start;
}
.service-card-uc:last-child { border-bottom: none; }
.service-card-uc-img {
  width: 120px;
  height: 90px;
  border-radius: var(--radius-md);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  overflow: hidden;
  background: var(--dark-3);
  border: 1px solid var(--border);
}
.service-card-uc-body { flex: 1; min-width: 0; }
.service-card-uc-title {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 2px;
}
.service-card-uc-region {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-bottom: 5px;
}
.service-rating {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.8125rem;
  margin-bottom: 5px;
}
.service-rating .s-star { color: #D99A2B; }
.rating-val { font-weight: 600; color: var(--text); }
.rating-count { color: var(--text-muted); }
.service-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  margin-bottom: 6px;
}
.service-price { font-weight: 700; color: var(--text); }
.service-dot { color: var(--border); }
.service-duration { color: var(--text-muted); }
.service-desc {
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 8px;
}
.service-badges { display: flex; gap: 6px; margin-bottom: 4px; flex-wrap: wrap; }
.service-badge {
  padding: 2px 9px;
  border-radius: var(--radius-pill);
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.badge-bestseller { background: rgba(215,105,9,0.15); color: var(--orange); }
.badge-new { background: rgba(61,170,106,0.15); color: var(--success); }
.badge-only { background: var(--orange-light); color: var(--orange); }
.badge-popular { background: rgba(100,150,255,0.1); color: #7090d0; }

/* Tier selector (Standard / Premium / Luxury) on each service card */
.tier-select {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 6px;
}
.tier-option { flex: 1 1 auto; }
.tier-option {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  padding: 9px 10px;
  border: 1px solid var(--border);
  border-radius: var(--radius-btn);
  cursor: pointer;
  transition: all 0.2s;
  background: transparent;
  min-width: 0;
}
.tier-option .tier-name, .tier-option .tier-price { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 100%; }
.tier-option input { position: absolute; opacity: 0; width: 0; height: 0; pointer-events: none; }
.tier-option .tier-name { font-size: 0.625rem; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.4px; }
.tier-option .tier-price { font-size: 0.8125rem; font-weight: 700; color: var(--text); }
.tier-option:hover { border-color: var(--orange); }
.tier-option:hover .tier-name { color: var(--orange); }
.tier-option:hover .tier-name,
.tier-option:hover .tier-price { color: #fff; }
.tier-option.selected { border-color: transparent; background: var(--gradient); }
.tier-option.selected .tier-name,
.tier-option.selected .tier-price { color: #fff; }
.tier-desc { font-size: 0.75rem; color: var(--text-muted); line-height: 1.5; margin-bottom: 8px; min-height: 1.1em; }

.search-no-results {
  display: none;
  padding: 24px;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.service-card-uc-action {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  flex-shrink: 0;
  padding-top: 2px;
}
.service-add-btn {
  background: transparent;
  border: 1.5px solid var(--orange);
  color: var(--orange);
  padding: 8px 24px;
  border-radius: var(--radius-btn);
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
  font-family: var(--font);
}
.service-add-btn:hover { background: var(--gradient); border-color: transparent; color: #fff; }
.service-add-btn.added { background: var(--gradient); border-color: transparent; color: #fff; }
.service-view-details,
.package-booknow-btn {
  font-size: 0.75rem;
  color: var(--text-muted);
  background: none;
  border: none;
  cursor: pointer;
  text-decoration: underline;
  padding: 0;
  font-family: var(--font);
}
.service-view-details:hover,
.package-booknow-btn:hover { color: var(--orange); }

/* Floating Cart Bar */
.cart-float-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--dark-2);
  border-top: 1px solid var(--border);
  color: var(--text);
  padding: 14px 48px;
  display: none;
  align-items: center;
  justify-content: space-between;
  z-index: 900;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.35);
}
.cart-float-bar.visible { display: flex; }
.cart-float-left {
  display: flex;
  align-items: center;
  gap: 14px;
}
.cart-float-count {
  background: var(--orange);
  color: #fff;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9375rem;
  flex-shrink: 0;
}
.cart-float-label { font-size: 0.875rem; font-weight: 500; }
.cart-float-price { font-size: 0.75rem; color: var(--text-muted); margin-top: 2px; }
.cart-float-btn {
  background: var(--gradient);
  color: #fff;
  border: none;
  padding: 12px 32px;
  border-radius: var(--radius-pill);
  font-size: 0.9375rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  font-family: var(--font);
}
.cart-float-btn:hover { background: var(--gradient-hover); }

/* Cart Drawer */
.cart-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 1100;
  display: none;
}
.cart-drawer-overlay.open { display: block; }
.cart-drawer {
  position: fixed;
  top: 0;
  right: -480px;
  width: 420px;
  max-width: 100vw;
  height: 100dvh;
  background: var(--dark-2);
  border-left: 1px solid var(--border);
  z-index: 1101;
  display: flex;
  flex-direction: column;
  transition: right 0.3s cubic-bezier(0.4,0,0.2,1);
  box-shadow: -4px 0 32px rgba(0,0,0,0.4);
}
.cart-drawer.open { right: 0; }
.cart-drawer-header {
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-shrink: 0;
}
.cart-drawer-header h3 { font-size: 1rem; font-weight: 700; color: var(--text); }
.cart-drawer-close {
  width: 32px;
  height: 32px;
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: 50%;
  font-size: 1.25rem;
  color: var(--text-muted);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.cart-drawer-close:hover { border-color: var(--orange); color: var(--orange); }
.cart-drawer-body {
  flex: 1;
  overflow-y: auto;
  padding: 12px 24px;
}
.cart-empty {
  text-align: center;
  padding: 60px 24px;
  color: var(--text-muted);
}
.cart-empty .empty-icon { font-size: 2.5rem; margin-bottom: 8px; }
.cart-empty p { font-size: 0.875rem; }
.cart-item {
  display: flex;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  align-items: flex-start;
}
.cart-item:last-child { border-bottom: none; }
.cart-item-emoji {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: var(--orange-light);
  border: 1px solid rgba(215,105,9,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}
.cart-item-info { flex: 1; min-width: 0; }
.cart-item-name { font-size: 0.875rem; font-weight: 600; color: var(--text); margin-bottom: 2px; }
.cart-item-tier-badge {
  display: inline-block;
  margin-left: 6px;
  padding: 1px 7px;
  border-radius: var(--radius-pill);
  background: var(--orange-light);
  color: var(--orange);
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  vertical-align: middle;
}
.cart-item-price { font-size: 0.8125rem; color: var(--orange); font-weight: 500; margin-bottom: 6px; }
.cart-item-stepper {
  display: flex;
  align-items: center;
  gap: 10px;
}
.cart-item-stepper button {
  width: 24px;
  height: 24px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--border);
  background: var(--bg-card);
  color: var(--text);
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.15s;
}
.cart-item-stepper button:hover { border-color: var(--orange); color: var(--orange); }
.cart-item-stepper button:disabled { opacity: 0.4; cursor: not-allowed; }
.cart-item-stepper .qty-val { font-size: 0.8125rem; font-weight: 700; color: var(--text); min-width: 22px; text-align: center; }
.cart-item-stepper .qty-label { font-size: 0.6875rem; color: var(--text-muted); }
.cart-item-remove {
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  font-size: 0.75rem;
  padding: 2px 4px;
  flex-shrink: 0;
  transition: color 0.15s;
}
.cart-item-remove:hover { color: #e05050; }
.cart-drawer-booking {
  padding: 16px 24px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  flex: 1;
  min-height: 0;
  overflow-y: auto;
}
/* During checkout, collapse the full cart list to a one-line summary so the
   wizard steps (address, schedule) get the full drawer height — critical on
   phones where the item list + People steppers otherwise fill the screen. */
.cart-drawer.checkout-active .cart-drawer-body { display: none; }
.checkout-cart-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 12px;
  margin-bottom: 16px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  font-size: 0.8125rem;
}
.checkout-cart-summary-label { color: var(--text-muted); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.checkout-cart-summary-total { font-weight: 700; color: var(--text); white-space: nowrap; }
.cart-drawer-booking h4 { font-size: 0.875rem; font-weight: 600; color: var(--text); margin-bottom: 12px; }
.cart-booking-field { margin-bottom: 12px; }
.cart-booking-field label {
  display: block;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-muted);
  margin-bottom: 6px;
}
.cart-booking-field input,
.cart-booking-field textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  font-family: var(--font);
  color: var(--text);
  background: var(--dark-3);
}
.cart-booking-field input:focus,
.cart-booking-field textarea:focus { outline: none; border-color: var(--orange); }
.cart-booking-field textarea { min-height: 56px; resize: none; }
.cart-drawer-footer {
  padding: 16px 24px;
  flex-shrink: 0;
}
.cart-total-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 14px;
}
.cart-total-price { color: var(--orange); }
.cart-proceed-note {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 10px;
  line-height: 1.5;
}

/* ── Checkout wizard (services.html cart drawer) ─────────────── */
.checkout-step h4 { font-size: 0.9375rem; font-weight: 700; color: var(--text); margin-bottom: 14px; }
.checkout-saved-addr-list { display: flex; flex-direction: column; gap: 8px; margin-bottom: 12px; }
.checkout-addr-card {
  display: flex; flex-direction: column; gap: 2px; text-align: left;
  padding: 10px 14px; border: 1.5px solid var(--border); border-radius: var(--radius-sm);
  background: var(--dark-3); cursor: pointer; font-family: var(--font);
  transition: border-color 0.15s, background 0.15s;
}
.checkout-addr-card:hover { border-color: var(--orange); }
.checkout-addr-card.selected { border-color: var(--orange); background: rgba(230,74,25,0.06); }
.checkout-addr-label { font-size: 0.75rem; font-weight: 700; color: var(--orange); text-transform: uppercase; letter-spacing: 0.4px; }
.checkout-addr-text { font-size: 0.8125rem; color: var(--text); }
.checkout-link-btn {
  background: none; border: none; color: var(--orange); font-size: 0.8125rem;
  font-weight: 600; cursor: pointer; padding: 4px 0; margin-bottom: 12px; font-family: var(--font);
}
.checkout-link-btn:hover { text-decoration: underline; }
.checkout-empty-note { font-size: 0.8125rem; color: var(--text-muted); margin-bottom: 10px; }
.checkout-step-actions { display: flex; flex-direction: column; gap: 8px; margin-top: 16px; }
.checkout-back-btn {
  background: none; border: none; color: var(--text-muted); font-size: 0.8125rem;
  font-weight: 500; cursor: pointer; padding: 6px 0; text-align: left; font-family: var(--font);
}
.checkout-back-btn:hover { color: var(--orange); }
.checkout-slot-list { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 12px; }
.checkout-slot-btn {
  display: flex; flex-direction: column; gap: 2px; padding: 10px 12px;
  border: 1.5px solid var(--border); border-radius: var(--radius-sm); background: var(--dark-3);
  cursor: pointer; font-family: var(--font); transition: border-color 0.15s, background 0.15s;
}
.checkout-slot-btn:hover { border-color: var(--orange); }
.checkout-slot-btn.selected { border-color: var(--orange); background: rgba(230,74,25,0.06); }
.checkout-slot-date { font-size: 0.8125rem; font-weight: 600; color: var(--text); }
.checkout-slot-time { font-size: 0.75rem; color: var(--text-muted); }
.checkout-slot-error { font-size: 0.8125rem; color: #e05050; margin-top: 10px; line-height: 1.5; }
.checkout-review-lines { margin-bottom: 8px; }
.checkout-review-line {
  display: flex; justify-content: space-between; gap: 10px;
  font-size: 0.8125rem; color: var(--text); padding: 4px 0;
}
.checkout-review-note { color: var(--text-muted); font-size: 0.75rem; }
.checkout-review-total { font-weight: 700; border-top: 1px solid var(--border); padding-top: 8px; margin-top: 4px; }
.checkout-review-addr { font-size: 0.8125rem; color: var(--text-muted); margin-top: 10px; line-height: 1.5; }
.checkout-review-addr strong { color: var(--text); }
.checkout-step-confirmation { text-align: center; padding: 12px 4px; }
.checkout-confirm-icon {
  width: 56px; height: 56px; border-radius: 50%; background: var(--gradient);
  display: flex; align-items: center; justify-content: center; margin: 0 auto 14px;
}
.checkout-step-confirmation h4 { text-align: center; margin-bottom: 8px; }
.checkout-step-confirmation p { font-size: 0.8125rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 12px; }
.checkout-step-confirmation a { color: var(--orange); }
.checkout-capacity-warning { color: #b45309 !important; background: #fef3c7; padding: 8px 12px; border-radius: var(--radius-sm); }

/* Services page responsive */
@media (max-width: 1024px) {
  .services-main { padding: 24px 32px 160px; }
  .service-tiles { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 768px) {
  .hero-picker { padding: 36px 0 32px; }
  .hero-picker-title { font-size: 1.625rem; }
  .service-tiles { grid-template-columns: repeat(4, 1fr); gap: 6px; }
  .service-tile-img { width: 60px; height: 60px; font-size: 1.5rem; }
  .service-tile-name { font-size: 0.6875rem; }

  .services-page-layout { flex-direction: column; }
  .services-sidebar {
    width: 100%;
    height: auto;
    position: sticky;
    top: var(--nav-height);
    border-right: none;
    border-bottom: 1px solid var(--border);
    padding: 0;
    display: flex;
    overflow-x: auto;
    white-space: nowrap;
    scrollbar-width: none;
    z-index: 10;
  }
  .services-sidebar::-webkit-scrollbar { display: none; }
  .sidebar-section-label { display: none; }
  .sidebar-cat-link {
    padding: 12px 16px;
    border-left: none;
    border-bottom: 3px solid transparent;
    flex-shrink: 0;
    font-size: 0.8125rem;
    gap: 6px;
  }
  .sidebar-cat-link.active {
    border-bottom-color: var(--orange);
    border-left-color: transparent;
    background: transparent;
    color: var(--orange);
  }
  .services-main { padding: 16px 16px 160px; }
  /* UC-style mobile service card: image + text share the top row, the
     Add button drops to a full-width row below so the text column is no
     longer squeezed into a sliver next to a fixed side action column. */
  .service-card-uc { gap: 12px; flex-wrap: wrap; padding: 16px 0; }
  .service-card-uc-img { width: 84px; height: 84px; font-size: 1.75rem; }
  .service-card-uc-body { flex: 1 1 0; }
  .service-card-uc-action {
    flex-basis: 100%;
    align-items: stretch;
    padding-top: 6px;
    gap: 6px;
  }
  .service-card-uc-action .service-add-btn { width: 100%; padding: 12px; }
  .service-card-uc-action .service-view-details { text-align: center; padding-top: 2px; }
  .cart-float-bar { padding: 12px 24px; }
  .cart-drawer { width: 100vw; right: -100vw; }
  .cart-drawer.open { right: 0; }
}
@media (max-width: 480px) {
  .tier-select { flex-direction: column; }
  .tier-option { flex-direction: row; justify-content: space-between; width: 100%; padding: 9px 16px; }
  .service-tiles { grid-template-columns: repeat(4, 1fr); gap: 4px; margin-bottom: 24px; }
  .service-tile { padding: 12px 4px 10px; gap: 6px; }
  .service-tile-img { width: 56px; height: 56px; font-size: 1.375rem; }
  .service-tile-name { font-size: 0.6875rem; }
  .service-tile-price { font-size: 0.625rem; }

  /* Compact hero on phones */
  .hero-picker { padding: 28px 0 24px; }
  .hero-picker-title { font-size: 1.5rem; margin-bottom: 8px; }
  .hero-picker-sub { font-size: 0.875rem; margin-bottom: 24px; }

  /* Trust strip: drop the inline dot separators so the items wrap into a
     tidy centered cluster instead of leaving orphaned "·" at line breaks. */
  .hero-trust-strip { gap: 6px 14px; font-size: 0.75rem; }
  .hero-trust-strip .trust-sep { display: none; }
}

/* ============================================
   Packages & Join Page
   ============================================ */

.package-emoji {
  width: 52px;
  height: 52px;
  background: var(--orange-light);
  border: 1px solid rgba(215,105,9,0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-right: 14px;
}
.package-header {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
  gap: 0;
}
.package-header > div h3 { font-size: 1.1rem; margin-bottom: 6px; }
.package-actions {
  display: flex;
  gap: 10px;
  margin-top: 16px;
  align-items: center;
}
.package-actions .service-add-btn { flex: 1; }
.package-actions .service-view-details,
.package-actions .package-booknow-btn { flex-shrink: 0; }

/* Join page — skills grid */
.join-skills-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 32px;
}
.join-skill-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px;
  text-align: center;
  transition: all 0.2s;
}
.join-skill-card:hover { border-color: var(--orange); box-shadow: var(--shadow-sm); }
.join-skill-emoji {
  font-size: 2rem;
  margin-bottom: 12px;
  display: block;
}
.join-skill-card h3 { font-size: 1rem; margin-bottom: 8px; }
.join-skill-card p { font-size: 0.875rem; color: var(--text-muted); }

@media (max-width: 768px) {
  .join-skills-grid { grid-template-columns: repeat(2, 1fr); }
  .package-actions { flex-direction: column; }
  .package-actions .service-add-btn,
  .package-actions .service-view-details,
  .package-actions .package-booknow-btn { width: 100%; text-align: center; }

  /* Package card: stack the banner image full-width on top, then title +
     price on their own row below. The desktop side-by-side header overflows
     and overlaps at phone widths, so on mobile we go full-bleed banner. */
  .package-card { padding: 20px; }
  .package-header { display: block; margin-bottom: 14px; }
  .package-card-img { margin: -20px -20px 16px -20px; height: 150px; border-radius: var(--radius-md) var(--radius-md) 0 0; }
  .package-header > div:not(.package-card-img) {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
  }
}
@media (max-width: 480px) {
  .join-skills-grid { grid-template-columns: 1fr; }
}

/* ============================================
   Photo / Image Handling
   ============================================ */

/* Service tiles — circular photo */
.service-tile-img {
  overflow: hidden;
  background: var(--bg-light) !important;
}
.service-tile-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 50%;
}

/* Service cards — rectangular photo */
.service-card-uc-img {
  overflow: hidden;
  background: var(--bg-light) !important;
}
.service-card-uc-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Category cards — tall banner photo */
.category-card-img {
  overflow: hidden;
  background: var(--bg-light);
  display: block;
}
.category-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.category-card:hover .category-card-img img { transform: scale(1.04); }

/* Occasion cards — square icon photo */
.occasion-icon {
  width: 72px;
  height: 64px;
  border-radius: 10px;
  overflow: hidden;
  margin: 0 auto 10px;
  flex-shrink: 0;
  font-size: 0; /* hide any stray text */
}
.occasion-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Trust icons — SVG */
.trust-icon {
  width: 52px;
  height: 52px;
  background: var(--orange-light);
  border: 1px solid rgba(194,24,91,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}
.trust-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--orange);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Package card photo banner */
.package-card-img {
  height: 160px;
  overflow: hidden;
  border-radius: var(--radius-md) var(--radius-md) 0 0;
  margin: -32px -32px 20px -32px;
}
.package-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.package-card:hover .package-card-img img { transform: scale(1.03); }

/* Sidebar category icons — SVG */
.sidebar-cat-icon {
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0;
}
.sidebar-cat-icon svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Cart empty icon */
.cart-empty .empty-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  background: var(--bg-light);
  border-radius: 50%;
  font-size: 0;
}
.cart-empty .empty-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--text-muted);
  fill: none;
  stroke-width: 1.5;
}

/* Cart item icon */
.cart-item-emoji {
  background: var(--orange-light);
  border: 1px solid rgba(194,24,91,0.15);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0;
}
.cart-item-emoji svg {
  width: 22px;
  height: 22px;
  stroke: var(--orange);
  fill: none;
  stroke-width: 1.5;
}

/* Join page skill photos */
.join-skill-photo {
  width: 100%;
  height: 120px;
  overflow: hidden;
  border-radius: var(--radius-sm);
  margin-bottom: 16px;
}
.join-skill-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Step number — use gradient */
.step-number {
  background: var(--gradient);
}

/* Confirm icon */
.confirm-icon {
  background: var(--success);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 24px;
}

/* Mobile cart button */
.mobile-cart-btn { background: var(--gradient); }

/* ============================================================
   Service detail pages (/services/<slug>) — generated by
   scripts/gen-service-pages.js. Shares the site design system.
   ============================================================ */
.service-view-details { display: inline-block; }
.sd-main { max-width: 1040px; margin: 0 auto; padding: 24px 40px 120px; }
.sd-breadcrumb { font-size: 0.8125rem; color: var(--text-muted); margin: 8px 0 24px; display: flex; flex-wrap: wrap; gap: 6px; align-items: center; }
.sd-breadcrumb a { color: var(--text-muted); text-decoration: none; }
.sd-breadcrumb a:hover { color: var(--orange); }
.sd-breadcrumb-current { color: var(--text); font-weight: 600; }

.sd-hero { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.sd-hero-media-wrap { border-radius: var(--radius-lg, 16px); overflow: hidden; background: var(--border); position: sticky; top: 90px; }
.sd-hero-media { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; display: block; }
.sd-cat-eyebrow { font-size: 0.8125rem; font-weight: 600; letter-spacing: 0.02em; color: var(--orange); text-transform: uppercase; margin-bottom: 8px; }
.sd-title { font-family: var(--font-display); font-size: 2.25rem; font-weight: 800; line-height: 1.1; color: var(--text); margin-bottom: 12px; }
.sd-rating { font-size: 0.9375rem; color: var(--text); margin-bottom: 12px; }
.sd-rating .s-star { color: #D99A2B; }
.sd-rating-count { color: var(--text-muted); }
.sd-badges { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 16px; }
.sd-desc { font-size: 1rem; line-height: 1.65; color: var(--text-secondary, #374151); margin-bottom: 16px; }
.sd-price-row { font-size: 1.125rem; color: var(--text); margin-bottom: 20px; }
.sd-price-row strong { font-size: 1.375rem; }
.sd-price-note { font-size: 0.8125rem; color: var(--text-muted); font-weight: 400; }
.sd-tier { margin-bottom: 20px; }
.sd-cta-row { display: flex; flex-direction: column; gap: 10px; }
.sd-add-btn {
  width: 100%; padding: 14px; border-radius: var(--radius-md); cursor: pointer;
  font-size: 0.9375rem; font-weight: 700; font-family: var(--font);
  background: #fff; color: var(--text); border: 1.5px solid var(--border);
}
.sd-add-btn.added { border-color: var(--orange); color: var(--orange); }
.sd-cta-note { font-size: 0.8125rem; color: var(--text-muted); margin-top: 12px; line-height: 1.5; }

.sd-section { margin-top: 48px; }
.sd-section h2 { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; color: var(--text); margin-bottom: 18px; }
.sd-included { list-style: none; padding: 0; display: grid; gap: 14px; }
.sd-included li { position: relative; padding-left: 28px; font-size: 0.9375rem; line-height: 1.6; color: var(--text-secondary, #374151); }
.sd-included li::before { content: "✓"; position: absolute; left: 0; top: 0; color: var(--orange); font-weight: 800; }
.sd-faq { display: grid; gap: 10px; }
.sd-faq-item { border: 1px solid var(--border); border-radius: var(--radius-md); background: #fff; padding: 0 16px; }
.sd-faq-item summary { cursor: pointer; padding: 14px 0; font-weight: 600; font-size: 0.9375rem; color: var(--text); list-style: none; display: flex; justify-content: space-between; align-items: center; }
.sd-faq-item summary::-webkit-details-marker { display: none; }
.sd-faq-item summary::after { content: "+"; color: var(--text-muted); font-size: 1.25rem; }
.sd-faq-item[open] summary::after { content: "−"; }
.sd-faq-item p { padding: 0 0 16px; font-size: 0.875rem; line-height: 1.6; color: var(--text-secondary, #374151); margin: 0; }
.sd-related-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 16px; }
.sd-related-card { display: flex; flex-direction: column; text-decoration: none; border: 1px solid var(--border); border-radius: var(--radius-md); overflow: hidden; background: #fff; transition: box-shadow 0.15s, transform 0.15s; }
.sd-related-card:hover { box-shadow: var(--shadow-md, 0 6px 20px rgba(0,0,0,0.08)); transform: translateY(-2px); }
.sd-related-card img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.sd-related-name { padding: 10px 12px 2px; font-size: 0.8125rem; font-weight: 600; color: var(--text); }
.sd-related-price { padding: 0 12px 12px; font-size: 0.75rem; color: var(--text-muted); }

/* Homepage Saree Draping style chips (replaces the old comma-separated list) */
.saree-style-chips { display: flex; flex-wrap: wrap; gap: 8px; margin: 4px 0 10px; }
.saree-style-chip {
  display: inline-block; padding: 6px 12px; border-radius: 999px;
  background: #fff; border: 1px solid var(--border); color: var(--text);
  font-size: 0.8125rem; font-weight: 600; text-decoration: none; transition: all 0.15s;
}
.saree-style-chip:hover { border-color: var(--orange); color: var(--orange); }
.saree-style-note { font-size: 0.875rem; color: var(--text-muted); }

@media (max-width: 768px) {
  .sd-main { padding: 16px 16px 120px; }
  .sd-hero { grid-template-columns: 1fr; gap: 20px; }
  .sd-hero-media-wrap { position: static; }
  .sd-hero-media { aspect-ratio: 16 / 10; }
  .sd-title { font-size: 1.625rem; }
  .sd-section { margin-top: 36px; }
  .sd-section h2 { font-size: 1.25rem; }
  .sd-related-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
}

/* ============================================
   Homepage — In the Spotlight + Most Booked
   ============================================ */
.section-header-left { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; text-align: left; margin-bottom: 28px; }
.section-header-left h2 { margin: 0; }
.section-header-left p { margin: 0; color: var(--text-muted); font-size: 0.95rem; }
.section-header-link { color: var(--orange); font-weight: 600; font-size: 0.9rem; white-space: nowrap; }
.section-header-link:hover { text-decoration: underline; }

/* In the spotlight */
.spotlight-row {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 20px;
}
.spotlight-card {
  position: relative;
  display: block;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 340px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s, box-shadow 0.2s;
}
.spotlight-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.spotlight-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.spotlight-card::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(17,24,39,0.72) 0%, rgba(17,24,39,0.15) 45%, rgba(17,24,39,0) 70%);
}
.spotlight-overlay { position: absolute; left: 0; right: 0; bottom: 0; z-index: 1; padding: 22px 24px; }
.spotlight-tag {
  display: inline-block; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.6px;
  text-transform: uppercase; color: #fff; background: rgba(255,255,255,0.18);
  border: 1px solid rgba(255,255,255,0.35); padding: 4px 10px; border-radius: var(--radius-pill); margin-bottom: 10px;
}
.spotlight-overlay h3 { color: #fff; font-size: 1.35rem; font-weight: 700; line-height: 1.2; }
.spotlight-overlay p { color: rgba(255,255,255,0.88); font-size: 0.9rem; margin-top: 6px; }

/* Most booked */
.booked-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
}
.booked-card {
  display: block;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.booked-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: transparent; }
.booked-img { aspect-ratio: 4 / 3; overflow: hidden; }
.booked-img img { width: 100%; height: 100%; object-fit: cover; }
.booked-body { padding: 12px 12px 14px; }
.booked-body h3 { font-size: 0.9rem; font-weight: 600; line-height: 1.3; margin-bottom: 6px; }
.booked-meta { display: flex; align-items: center; gap: 6px; font-size: 0.78rem; color: var(--text-muted); margin-bottom: 4px; }
.booked-rating { color: var(--text); font-weight: 600; }
.booked-rating .s-star { color: #D99A2B; }
.booked-price { font-size: 0.85rem; font-weight: 700; color: var(--text); }

@media (max-width: 980px) {
  .spotlight-row { grid-template-columns: 1fr 1fr; }
  .spotlight-card.spotlight-lg { grid-column: 1 / -1; min-height: 260px; }
  .booked-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 560px) {
  .section-header-left { flex-wrap: wrap; }
  .spotlight-row { grid-template-columns: 1fr; }
  .spotlight-card { min-height: 220px; }
  .spotlight-card.spotlight-lg { min-height: 240px; }
  .booked-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
}
