/* =========================================
   DIVYANSHI WELLNESS – Design System v2
   ========================================= */
:root {
  --green-deep: #1B4332;
  --green-mid: #2D6A4F;
  --green-sage: #74C69D;
  --green-light: #D8F3DC;
  --ivory: #F8F6F1;
  --earth: #8B5E3C;
  --earth-light: #F0E6DC;
  --charcoal: #2D3748;
  --grey-mid: #718096;
  --grey-light: #E2E8F0;
  --white: #FFFFFF;
  --header-h: 64px;
  --nav-h: 72px;
  --content-max: 600px;
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 28px;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.12);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.16);
  --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--ivory);
  color: var(--charcoal);
  min-height: 100vh;
  padding-top: var(--header-h);
  padding-bottom: var(--nav-h);
  overflow-x: hidden;
}

/* ─── TOP HEADER ─────────────────────────────── */
.top-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-h);
  background: var(--green-deep);
  z-index: 1000;
  box-shadow: 0 2px 16px rgba(27,67,50,0.25);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 14px;
  height: 100%;
  max-width: 1200px;
  margin: 0 auto;
  gap: 8px;
  overflow: hidden;
}

.brand {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  flex: 1 1 0;
  min-width: 0;
  overflow: hidden;
}

.brand-text {
  display: flex;
  flex-direction: column;
  min-width: 0;
  overflow: hidden;
}

.brand-name {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  letter-spacing: 0.01em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.brand-sub {
  font-size: 8px;
  color: var(--green-sage);
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  line-height: 1;
  margin-top: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}


.header-call {
  display: flex;
  align-items: center;
  gap: 5px;
  background: var(--green-sage);
  color: var(--green-deep);
  font-size: 11px;
  font-weight: 700;
  padding: 8px 12px;
  border-radius: 50px;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  transition: var(--transition);
}
.header-call:hover { background: var(--white); }

/* ─── PAGE CONTENT ───────────────────────────── */
.page-content {
  min-height: calc(100vh - var(--header-h) - var(--nav-h));
  max-width: var(--content-max);
  margin: 0 auto;
  animation: fade-in 0.3s ease;
}

@keyframes fade-in {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ─── BOTTOM NAV ─────────────────────────────── */
.bottom-nav {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: var(--content-max);
  height: var(--nav-h);
  background: var(--white);
  border-top: 1px solid var(--grey-light);
  display: flex;
  align-items: center;
  z-index: 1000;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.10);
  padding: 0 4px;
  border-radius: 20px 20px 0 0;
}

.nav-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  text-decoration: none;
  color: var(--grey-mid);
  font-size: 10px;
  font-weight: 500;
  padding: 8px 4px 12px;
  transition: var(--transition);
  position: relative;
  -webkit-tap-highlight-color: transparent;
}

.nav-item.active { color: var(--green-deep); }
.nav-item.active .nav-icon { stroke: var(--green-deep); }
.nav-item.active::before {
  content: '';
  position: absolute;
  top: 0; left: 20%; right: 20%;
  height: 3px;
  background: var(--green-sage);
  border-radius: 0 0 3px 3px;
}
/* Book button never gets the green line – it has its own circle */
.nav-book.active::before { display: none; }

.nav-icon {
  width: 22px;
  height: 22px;
  stroke: var(--grey-mid);
  transition: var(--transition);
}
.nav-item:hover:not(.nav-book) { color: var(--green-mid); }
.nav-item:hover:not(.nav-book) .nav-icon { stroke: var(--green-mid); }

/* Book button – icon stays white always */
.nav-book { position: relative; }

.nav-book-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-deep), var(--green-mid));
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(27,67,50,0.4);
  position: relative;
  top: -8px;
  transition: transform 0.25s, box-shadow 0.25s;
  flex-shrink: 0;
}
.nav-book:hover .nav-book-btn {
  transform: scale(1.07);
  box-shadow: 0 6px 20px rgba(27,67,50,0.5);
}

/* icon inside book btn – NEVER changes colour */
.nav-book-icon {
  width: 22px;
  height: 22px;
  stroke: white !important;
  fill: none;
  pointer-events: none;
}

.nav-book span { margin-top: -4px; color: var(--grey-mid); }
.nav-book.active span { color: var(--green-deep); }
.nav-book:hover span { color: var(--grey-mid); }

/* ─── HERO ───────────────────────────────────── */
.hero {
  background: linear-gradient(160deg, var(--green-deep) 0%, var(--green-mid) 60%, #40916C 100%);
  padding: 44px 28px 52px;
  position: relative;
  overflow: hidden;
}

.hero-mandala {
  position: absolute;
  right: -10px;
  top: 10px;
  width: 120px;
  height: 120px;
  opacity: 0.12;
  pointer-events: none;
  object-fit: contain;
  animation: none !important;
  transform: none !important;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.22);
  color: #EAF6EF;
  font-family: 'Vesper Libre', 'Noto Serif Devanagari', serif;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.02em;
  text-transform: none;
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 22px;
  line-height: 1.55;
}
/* Dot: bright sage, clearly visible */
.hero-badge::before {
  content: '✦';
  font-size: 10px;
  color: #a8edcc;
  animation: blink 3s ease infinite;
}
@keyframes blink { 0%,100% { opacity: 1; } 50% { opacity: 0.3; } }



.hero h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 34px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}
.hero h1 em { font-style: italic; color: var(--green-sage); }

.hero-sub {
  font-size: 15px;
  color: rgba(255,255,255,0.78);
  line-height: 1.65;
  margin-bottom: 22px;
  font-weight: 300;
  max-width: 460px;
}

.hero-location {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.65);
  font-size: 12px;
  margin-bottom: 28px;
}
.hero-location svg { width: 14px; height: 14px; stroke: var(--green-sage); flex-shrink: 0; }

.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ─── BUTTONS ────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green-sage);
  color: var(--green-deep);
  font-size: 14px;
  font-weight: 700;
  padding: 13px 24px;
  border-radius: 50px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  font-family: 'Inter', sans-serif;
  white-space: nowrap;
}
.btn-primary:hover { background: var(--white); transform: translateY(-1px); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  padding: 13px 24px;
  border-radius: 50px;
  text-decoration: none;
  border: 1.5px solid rgba(255,255,255,0.35);
  cursor: pointer;
  transition: var(--transition);
  font-family: 'Inter', sans-serif;
  white-space: nowrap;
}
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.1); }

.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  color: var(--earth);
  font-size: 14px;
  font-weight: 700;
  padding: 13px 26px;
  border-radius: 50px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  font-family: 'Inter', sans-serif;
}
.btn-white:hover { transform: scale(1.02); box-shadow: 0 4px 16px rgba(0,0,0,0.15); }

.btn-green {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--green-deep), var(--green-mid));
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  padding: 13px 24px;
  border-radius: 50px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  font-family: 'Inter', sans-serif;
  white-space: nowrap;
}
.btn-green:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(27,67,50,0.35); }

/* ─── STATS BAR ──────────────────────────────── */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--white);
  border-bottom: 1px solid var(--grey-light);
  box-shadow: var(--shadow-sm);
}
.stat-item {
  padding: 16px 8px;
  text-align: center;
  border-right: 1px solid var(--grey-light);
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--green-deep);
  line-height: 1;
}
.stat-label {
  font-size: 9px;
  color: var(--grey-mid);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 4px;
  line-height: 1.3;
}

/* ─── SECTION COMMON ─────────────────────────── */
.section { padding: 28px 20px; }
.section-header { margin-bottom: 20px; }
.section-eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--earth);
  margin-bottom: 6px;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--green-deep);
  line-height: 1.25;
}
.section-title em { font-style: italic; color: var(--green-mid); }
.section-desc {
  font-size: 14px;
  color: var(--grey-mid);
  line-height: 1.6;
  margin-top: 8px;
}

/* ─── SERVICE CARDS – HOME GRID ──────────────── */
.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  align-items: stretch;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 18px 14px;
  text-decoration: none;
  color: inherit;
  border: 1.5px solid transparent;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  border-color: var(--green-sage);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.service-icon { font-size: 28px; margin-bottom: 10px; display: block; flex-shrink: 0; }
.service-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--green-deep);
  margin-bottom: 6px;
  line-height: 1.3;
}
.service-card p { font-size: 11px; color: var(--grey-mid); line-height: 1.5; flex: 1; }
.service-arrow {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 700;
  color: var(--green-deep);
  background: var(--green-light);
  border: 1.5px solid var(--green-sage);
  padding: 7px 12px;
  border-radius: 50px;
  margin-top: 14px;
  transition: var(--transition);
  align-self: flex-start;
}
.service-card:hover .service-arrow {
  background: var(--green-deep);
  color: var(--white);
}

/* ─── SERVICES LIST (full page) ──────────────── */
.therapy-category {
  padding: 20px 20px 0;
}
.therapy-category-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: 50px;
  display: inline-block;
  margin-bottom: 14px;
}
.therapy-category-label.temp {
  background: #FFF3CD;
  color: #856404;
}
.therapy-category-label.perm {
  background: var(--green-light);
  color: var(--green-deep);
}
.therapy-list { display: flex; flex-direction: column; gap: 12px; }

.therapy-list-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 13px 12px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  text-decoration: none;
  color: inherit;
  box-shadow: var(--shadow-sm);
  border: 1.5px solid transparent;
  transition: var(--transition);
}
.therapy-list-card:hover {
  border-color: var(--green-sage);
  box-shadow: var(--shadow-md);
  transform: translateX(3px);
}
.therapy-list-icon {
  font-size: 26px;
  flex-shrink: 0;
  line-height: 1;
  margin-top: 2px;
}
.therapy-list-body { flex: 1; min-width: 0; }
.therapy-list-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--green-deep);
  margin-bottom: 3px;
  line-height: 1.3;
}
.therapy-list-body p { font-size: 12px; color: var(--grey-mid); line-height: 1.45; }
.therapy-price {
  font-size: 14px;
  font-weight: 700;
  color: var(--green-deep);
  white-space: nowrap;
  flex-shrink: 0;
  text-align: right;
}
.therapy-price small { display: block; font-size: 10px; font-weight: 500; color: var(--grey-mid); }

/* --- TESTIMONIALS --- */
.testimonials-wrap {
  overflow: hidden;
  padding: 4px 0 0;
}
.testimonials-scroll {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding: 4px 20px 16px;
  scrollbar-width: none;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  box-sizing: border-box;
}
.testimonials-scroll::-webkit-scrollbar { display: none; }

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 20px 18px;
  /* 100vw - 2x20px scroll padding - 2x20px page section padding */
  width: calc(100vw - 80px);
  max-width: 520px;
  flex: 0 0 auto;
  scroll-snap-align: start;
  box-shadow: var(--shadow-md);
  border: 1.5px solid var(--grey-light);
  box-sizing: border-box;
  overflow: hidden;
  word-break: break-word;
}

.testimonial-stars { color: #F6AD55; font-size: 16px; margin-bottom: 12px; letter-spacing: 2px; }
.testimonial-text {
  font-size: 14px;
  color: var(--charcoal);
  line-height: 1.65;
  font-style: italic;
  margin-bottom: 16px;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-light), var(--green-sage));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--green-deep);
  flex-shrink: 0;
}
.testimonial-name { font-size: 14px; font-weight: 600; color: var(--charcoal); }
.testimonial-loc { font-size: 12px; color: var(--grey-mid); }

.scroll-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  padding: 4px 0 12px;
}
.scroll-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--grey-light);
  transition: var(--transition);
}
.scroll-dot.active {
  background: var(--green-sage);
  width: 20px;
  border-radius: 3px;
}

/* ─── CTA BANNER ─────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, var(--earth), #A0522D);
  margin: 0 20px 28px;
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -30px; right: -30px;
  width: 120px; height: 120px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
}
.cta-banner h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  color: var(--white);
  margin-bottom: 8px;
}
.cta-banner p {
  font-size: 13px;
  color: rgba(255,255,255,0.85);
  margin-bottom: 20px;
  line-height: 1.5;
}

/* ─── HOURS STRIP ────────────────────────────── */
.hours-strip {
  background: var(--earth-light);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.hours-strip svg { width: 18px; height: 18px; stroke: var(--earth); flex-shrink: 0; }
.hours-text { font-size: 12px; color: var(--earth); font-weight: 500; line-height: 1.4; }

/* ─── CONTACT PAGE ───────────────────────────── */
.contact-hero {
  background: var(--green-deep);
  padding: 32px 24px;
}
.contact-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  color: var(--white);
  margin-bottom: 8px;
}
.contact-hero p { font-size: 14px; color: rgba(255,255,255,0.75); }

.contact-cards { padding: 20px; display: flex; flex-direction: column; gap: 12px; }

.contact-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 18px;
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  color: inherit;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--grey-light);
  transition: var(--transition);
}
.contact-card:hover { box-shadow: var(--shadow-md); transform: translateX(4px); }

.contact-icon-wrap {
  width: 48px; height: 48px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 22px;
}
.contact-icon-wrap.green { background: var(--green-light); }
.contact-icon-wrap.earth { background: var(--earth-light); }
.contact-icon-wrap.blue { background: #EBF8FF; }
.contact-icon-wrap.purple { background: #FAF5FF; }

.contact-card-label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--grey-mid);
  margin-bottom: 3px;
}
.contact-card-value {
  font-size: 14px;
  font-weight: 600;
  color: var(--charcoal);
  line-height: 1.3;
}

.map-embed {
  margin: 0 20px 20px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--grey-light);
  height: 240px;
}
.map-embed iframe { width: 100%; height: 100%; border: none; }

/* ─── ABOUT PAGE ─────────────────────────────── */
.about-hero {
  background: var(--green-deep);
  padding: 40px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.about-hero::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 300px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(116,198,157,0.12) 0%, transparent 70%);
}
.about-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 30px;
  color: var(--white);
  margin-bottom: 12px;
}
.about-hero p { font-size: 14px; color: rgba(255,255,255,0.75); line-height: 1.6; max-width: 400px; margin: 0 auto; }
.about-section { padding: 24px 20px; }
.about-section h2 { font-family: 'Playfair Display', serif; font-size: 22px; color: var(--green-deep); margin-bottom: 12px; }
.about-section p { font-size: 14px; color: var(--grey-mid); line-height: 1.7; margin-bottom: 14px; }

.value-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 16px; }
.value-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 16px;
  box-shadow: var(--shadow-sm);
  border-left: 3px solid var(--green-sage);
}
.value-icon { font-size: 24px; margin-bottom: 8px; }
.value-card h4 { font-size: 13px; font-weight: 700; color: var(--green-deep); margin-bottom: 4px; }
.value-card p { font-size: 11px; color: var(--grey-mid); line-height: 1.5; margin: 0; }

.divider { height: 1px; background: var(--grey-light); margin: 0 20px; }

/* ─── BOOKING FORM ───────────────────────────── */
.book-hero {
  background: linear-gradient(160deg, var(--green-deep), var(--green-mid));
  padding: 32px 24px;
}
.book-hero h1 { font-family: 'Playfair Display', serif; font-size: 28px; color: var(--white); margin-bottom: 8px; }
.book-hero p { font-size: 14px; color: rgba(255,255,255,0.75); }

.book-form-wrap { padding: 24px 20px 32px; }
.form-group { margin-bottom: 18px; }
.form-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 7px;
  letter-spacing: 0.02em;
}
.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--grey-light);
  background: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: var(--charcoal);
  outline: none;
  transition: var(--transition);
  appearance: none;
  -webkit-appearance: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--green-sage);
  box-shadow: 0 0 0 3px rgba(116,198,157,0.15);
}
.form-textarea { resize: vertical; min-height: 100px; }
.form-select-wrap { position: relative; }
.form-select-wrap::after {
  content: '▾';
  position: absolute;
  right: 16px; top: 50%;
  transform: translateY(-50%);
  color: var(--grey-mid);
  pointer-events: none;
}
/* ─── PHONE ISD PICKER ───────────────────────── */
.phone-input-wrap {
  display: flex;
  align-items: stretch;
  border: 1.5px solid var(--grey-light);
  border-radius: var(--radius-sm);
  background: var(--white);
  overflow: hidden;
  transition: var(--transition);
}
.phone-input-wrap:focus-within {
  border-color: var(--green-sage);
  box-shadow: 0 0 0 3px rgba(116,198,157,0.15);
}

.phone-isd {
  flex-shrink: 0;
  border: none;
  border-right: 1.5px solid var(--grey-light);
  background: #F4FAF6;
  color: var(--charcoal);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  padding: 13px 10px 13px 12px;
  cursor: pointer;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  /* arrow */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23718096' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 8px center;
  padding-right: 26px;
  min-width: 88px;
}
.phone-isd:focus { background-color: #EAF5EE; }

.phone-number {
  flex: 1;
  border: none;
  background: transparent;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: var(--charcoal);
  padding: 13px 14px;
  outline: none;
  min-width: 0;
}
.phone-number::placeholder { color: #B0BEC5; }

.btn-submit {
  display: block;
  width: 100%;
  background: linear-gradient(135deg, var(--green-deep), var(--green-mid));
  color: var(--white);
  font-size: 16px;
  font-weight: 700;
  padding: 16px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  transition: var(--transition);
  letter-spacing: 0.02em;
  box-shadow: 0 4px 16px rgba(27,67,50,0.3);
}
.btn-submit:hover { transform: translateY(-2px); box-shadow: 0 6px 24px rgba(27,67,50,0.4); }
.btn-submit:active { transform: translateY(0); }
.book-note {
  text-align: center;
  font-size: 12px;
  color: var(--grey-mid);
  margin-top: 16px;
  line-height: 1.6;
}

/* ─── POST-BOOKING (confirmation + next steps) ── */
.booked-wrap { padding: 36px 20px 20px; }
.booked-check {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: var(--green-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
  font-size: 38px;
}
.booked-wrap h2 {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  color: var(--green-deep);
  text-align: center;
  margin-bottom: 8px;
}
.booked-wrap > p {
  font-size: 14px;
  color: var(--grey-mid);
  line-height: 1.65;
  text-align: center;
  margin-bottom: 24px;
}
.booking-summary {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 18px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 28px;
}
.booking-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--grey-light);
  font-size: 13px;
  gap: 12px;
}
.booking-row:last-child { border-bottom: none; }
.booking-row-label { color: var(--grey-mid); flex-shrink: 0; }
.booking-row-value { font-weight: 600; color: var(--charcoal); text-align: right; }

.next-steps-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey-mid);
  margin-bottom: 14px;
  text-align: center;
}
.next-steps { display: flex; flex-direction: column; gap: 12px; margin-bottom: 24px; }

.next-step-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 18px 16px;
  text-decoration: none;
  color: inherit;
  box-shadow: var(--shadow-sm);
  border: 1.5px solid var(--grey-light);
  transition: var(--transition);
}
.next-step-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
  border-color: var(--green-sage);
}
.next-step-icon {
  width: 52px; height: 52px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  flex-shrink: 0;
}
.next-step-icon.call { background: #E8F5E9; }
.next-step-icon.wa { background: #E8F5E9; }
.next-step-icon.home { background: var(--earth-light); }

.next-step-card h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--green-deep);
  margin-bottom: 3px;
}
.next-step-card p { font-size: 12px; color: var(--grey-mid); line-height: 1.4; }
.next-step-arrow { margin-left: auto; flex-shrink: 0; }
.next-step-arrow svg { width: 18px; height: 18px; stroke: var(--green-sage); }

/* ─── SERVICE DETAIL ─────────────────────────── */
.service-detail-hero {
  background: var(--green-deep);
  padding: 32px 24px;
  position: relative;
  overflow: hidden;
}
.service-detail-hero::after {
  content: '';
  position: absolute;
  bottom: -30px; right: -30px;
  width: 140px; height: 140px;
  border-radius: 50%;
  background: rgba(116,198,157,0.1);
}
.service-detail-hero .service-icon-lg { font-size: 52px; margin-bottom: 16px; display: block; }
.service-detail-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  color: var(--white);
  margin-bottom: 10px;
}
.service-detail-hero p { font-size: 14px; color: rgba(255,255,255,0.78); line-height: 1.6; }
.service-price-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  color: var(--white);
  font-size: 16px;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.back-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--green-sage);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  margin-bottom: 18px;
}

.conditions-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 12px; }
.condition-chip {
  background: var(--green-light);
  color: var(--green-deep);
  font-size: 12px;
  font-weight: 600;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  text-align: center;
}

/* ─── WHATSAPP FLOAT ─────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: calc(var(--nav-h) + 16px);
  right: 16px;
  width: 52px; height: 52px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,0.4);
  text-decoration: none;
  z-index: 998;
  transition: var(--transition);
}
.whatsapp-float:hover { transform: scale(1.1); }
.whatsapp-float svg { width: 28px; height: 28px; fill: var(--white); }

/* ═══════════════════════════════════════════════
   RESPONSIVE BREAKPOINTS
   ═══════════════════════════════════════════════ */

/* ── Tablet Portrait (600px – 900px) ── */
@media (min-width: 601px) {
  :root { --content-max: 660px; }

  .hero { padding: 52px 40px 60px; }
  .hero h1 { font-size: 40px; }
  .hero-sub { font-size: 16px; }

  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .service-card h3 { font-size: 15px; }

  .stat-number { font-size: 22px; }
  .stat-label { font-size: 10px; }

  .testimonial-card { min-width: 340px; }

  .section { padding: 32px 28px; }
  .cta-banner { margin: 0 28px 32px; }

  .map-embed { height: 280px; }

  .value-cards { grid-template-columns: repeat(4, 1fr); }
  .value-card { padding: 20px 14px; }

  .book-form-wrap { padding: 28px 40px 40px; }

  .whatsapp-float { right: calc(50% - 314px); }
}

/* ── Tablet Landscape / Small Desktop (900px – 1200px) ── */
@media (min-width: 901px) {
  :root { --content-max: 760px; --nav-h: 76px; --header-h: 70px; }

  .header-inner { padding: 0 40px; }
  .brand-name { font-size: 20px; }
  .brand-sub { font-size: 10px; }
  .header-call { font-size: 14px; padding: 10px 22px; }

  .hero { padding: 64px 56px 72px; }
  .hero h1 { font-size: 48px; }
  .hero-mandala { width: 160px; height: 160px; right: -10px; animation: none !important; transform: none !important; }

  .services-grid { grid-template-columns: repeat(4, 1fr); }

  .nav-item { font-size: 12px; }
  .nav-icon { width: 24px; height: 24px; }
  .nav-book-btn { width: 58px; height: 58px; }
  .nav-book-icon { width: 26px; height: 26px; }

  .section { padding: 40px 40px; }
  .section-title { font-size: 28px; }

  .testimonial-card { min-width: 380px; }

  .book-form-wrap { padding: 32px 60px 48px; }

  .map-embed { height: 340px; }

  .whatsapp-float { right: calc(50% - 364px); }
}

/* ── Large Desktop (1200px+) ── */
@media (min-width: 1200px) {
  :root { --content-max: 840px; }

  .header-inner { max-width: 1400px; }
  .brand-name { font-size: 22px; }

  .hero h1 { font-size: 52px; }
  .hero { padding: 72px 64px 80px; }
  .hero-mandala { width: 180px; height: 180px; animation: none !important; transform: none !important; }

  .section { padding: 44px 48px; }
  .section-title { font-size: 32px; }

  .stat-number { font-size: 26px; }

  .testimonial-card { min-width: 420px; }

  .whatsapp-float { right: calc(50% - 404px); }
}

/* ── Ensure bottom nav stays centred across all widths ── */
@media (min-width: 601px) {
  .bottom-nav {
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  }
}

/* ── Phone: preserve full-width cards ── */
@media (max-width: 380px) {
  .hero h1 { font-size: 28px; }
  .hero { padding: 32px 18px 40px; }
  .services-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .service-card { padding: 14px 10px; }
  .service-card h3 { font-size: 12px; }
  .stat-number { font-size: 17px; }
  .testimonial-card { min-width: calc(100vw - 52px); }
  .hero-actions { flex-direction: column; }
  .btn-primary, .btn-outline { width: 100%; justify-content: center; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
}

/* ─── SITE NOTICES ───────────────────────────── */
.site-notice {
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 500;
  text-align: center;
  line-height: 1.4;
}
.site-notice.info    { background: #EBF8FF; color: #2A4365; border-bottom: 1px solid #90CDF4; }
.site-notice.warning { background: #FFFBEB; color: #744210; border-bottom: 1px solid #F6E05E; }
.site-notice.success { background: #F0FFF4; color: #22543D; border-bottom: 1px solid #9AE6B4; }

/* ─── NEWS TICKER ────────────────────────────── */
.ticker-wrap {
  display: flex;
  align-items: center;
  background: var(--green-deep);
  overflow: hidden;
  height: 38px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.ticker-label {
  flex-shrink: 0;
  padding: 0 12px;
  font-size: 16px;
  border-right: 1px solid rgba(255,255,255,0.15);
  height: 100%;
  display: flex;
  align-items: center;
  background: rgba(0,0,0,0.1);
}
.ticker-track-wrap {
  flex: 1;
  overflow: hidden;
  position: relative;
}
.ticker-track {
  display: flex;
  align-items: center;
  white-space: nowrap;
  animation: ticker-scroll 30s linear infinite;
  will-change: transform;
}
.ticker-track:hover { animation-play-state: paused; }
.ticker-item {
  font-size: 12px;
  color: rgba(255,255,255,0.88);
  padding: 0 36px 0 0;
  font-weight: 500;
  letter-spacing: 0.01em;
}
.ticker-item::after {
  content: '·';
  margin-left: 36px;
  color: var(--green-sage);
  font-weight: 700;
}
.ticker-item:last-child::after { display: none; }
@keyframes ticker-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-33.333%); }
}

/* ─── EXPERT SECTION ─────────────────────────── */
.expert-section { padding-bottom: 0; }
.expert-card {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 20px;
  box-shadow: var(--shadow-md);
  border: 1.5px solid var(--green-light);
  margin-bottom: 16px;
}
.expert-photo-wrap { flex-shrink: 0; }
.expert-photo {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--green-sage);
}
.expert-photo-placeholder {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: var(--green-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-mid);
  border: 3px solid var(--green-sage);
}
.expert-info { flex: 1; min-width: 0; }
.expert-name {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--green-deep);
  margin-bottom: 3px;
}
.expert-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--green-mid);
  margin-bottom: 6px;
}
.expert-qual, .expert-exp {
  font-size: 12px;
  color: var(--grey-mid);
  margin-bottom: 3px;
}
.expert-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 10px;
}
.expert-chip {
  background: var(--green-light);
  color: var(--green-deep);
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 50px;
}
.expert-bio {
  font-size: 14px;
  color: var(--grey-mid);
  line-height: 1.75;
  padding: 14px 0;
}

/* ─── SHOP ───────────────────────────────────── */
.shop-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  padding: 20px;
  align-items: stretch;
}
.product-card {
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  border: 1.5px solid var(--grey-light);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.product-img-wrap {
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--ivory);
  flex-shrink: 0;
}
.product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  background: var(--green-light);
}
.product-body {
  padding: 12px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.product-name {
  font-family: 'Playfair Display', serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--green-deep);
  margin-bottom: 5px;
  line-height: 1.3;
}
.product-desc {
  font-size: 11px;
  color: var(--grey-mid);
  line-height: 1.5;
  flex: 1;
}
.product-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}
.product-price {
  font-size: 16px;
  font-weight: 700;
  color: var(--green-deep);
}
.product-btn {
  font-size: 10px !important;
  padding: 6px 10px !important;
  border-radius: 50px !important;
  gap: 4px !important;
}
.product-out {
  font-size: 11px;
  color: #E53E3E;
  font-weight: 600;
}

/* ─── RESPONSIVE ADJUSTMENTS ─────────────────── */
@media (max-width: 380px) {
  .shop-grid { grid-template-columns: 1fr; }
  .expert-card { flex-direction: column; align-items: center; text-align: center; }
  .expert-chips { justify-content: center; }
}
@media (min-width: 601px) {
  .shop-grid { grid-template-columns: repeat(3, 1fr); padding: 24px 28px; }
}

/* ─── ADD TO CART BUTTON ─────────────────────── */
.btn-add-cart {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--green-deep);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  padding: 8px 14px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-add-cart:hover { background: var(--green-mid); transform: scale(1.03); }

/* ─── FLOATING CART BAR ──────────────────────── */
.cart-bar {
  position: fixed;
  bottom: calc(var(--nav-h) + 8px);
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 24px);
  max-width: calc(var(--content-max) - 24px);
  background: var(--green-deep);
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 32px rgba(27,67,50,0.45);
  z-index: 990;
  animation: slide-up 0.3s ease;
}
@keyframes slide-up { from { transform: translateX(-50%) translateY(20px); opacity:0; } to { transform: translateX(-50%) translateY(0); opacity:1; } }

.cart-bar-inner {
  display: flex;
  align-items: center;
  padding: 12px 16px;
  gap: 10px;
}
.cart-icon { font-size: 20px; flex-shrink: 0; }
.cart-count-label { font-size: 13px; color: rgba(255,255,255,0.85); font-weight: 600; flex-shrink: 0; }
.cart-bar-items { flex: 1; font-size: 14px; font-weight: 700; color: var(--white); text-align: center; }
.cart-checkout-btn {
  background: var(--green-sage);
  color: var(--green-deep);
  border: none;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  padding: 9px 14px;
  cursor: pointer;
  white-space: nowrap;
  font-family: 'Inter', sans-serif;
  transition: var(--transition);
  flex-shrink: 0;
}
.cart-checkout-btn:hover { background: var(--white); }

/* ─── CHECKOUT PAGE ──────────────────────────── */
.checkout-section { padding: 20px 20px 0; }
.checkout-label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--grey-mid);
  margin-bottom: 10px;
}
.checkout-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 16px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--grey-light);
}
.order-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid var(--grey-light);
}
.order-item:last-child { border-bottom: none; }
.order-item-name { flex: 1; font-size: 13px; font-weight: 600; color: var(--charcoal); }
.order-item-qty-wrap { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.qty-btn {
  width: 26px; height: 26px;
  border-radius: 50%;
  border: 1.5px solid var(--grey-light);
  background: var(--white);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: var(--green-deep);
  transition: var(--transition);
}
.qty-btn:hover { background: var(--green-light); border-color: var(--green-sage); }
.qty-num { font-size: 14px; font-weight: 700; color: var(--charcoal); min-width: 20px; text-align: center; }
.order-item-price { font-size: 14px; font-weight: 700; color: var(--green-deep); flex-shrink: 0; }

.checkout-totals { padding: 12px 0 0; }
.checkout-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  padding: 6px 0;
  color: var(--charcoal);
}
.total-row {
  font-size: 16px;
  font-weight: 700;
  color: var(--green-deep);
  border-top: 2px solid var(--grey-light);
  margin-top: 6px;
  padding-top: 10px;
}

.coupon-input-wrap {
  display: flex;
  gap: 10px;
  align-items: stretch;
}
.coupon-input-wrap .form-input {
  flex: 1;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}

/* ─── COUPON PILL (modern) ───────────────────── */
.coupon-pill-wrap { margin-bottom: 4px; }

.coupon-pill {
  display: flex;
  align-items: center;
  background: var(--white);
  border: 2px solid var(--grey-light);
  border-radius: 50px;
  padding: 6px 6px 6px 14px;
  gap: 8px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.coupon-pill:focus-within {
  border-color: var(--green-sage);
  box-shadow: 0 0 0 3px rgba(116,198,157,0.15);
}
.coupon-pill.coupon-applied {
  border-color: #38A169;
  background: #F0FFF4;
}

.coupon-pill-icon { font-size: 18px; flex-shrink: 0; line-height: 1; }

.coupon-pill-input {
  flex: 1;
  border: none;
  background: transparent;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--charcoal);
  letter-spacing: 0.06em;
  outline: none;
  min-width: 0;
}
.coupon-pill-input::placeholder {
  font-weight: 400;
  letter-spacing: 0;
  color: #B0BEC5;
  font-size: 13px;
}

.coupon-pill-btn {
  flex-shrink: 0;
  background: var(--green-deep);
  color: var(--white);
  border: none;
  border-radius: 50px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 700;
  padding: 10px 20px;
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
}
.coupon-pill-btn:hover:not(:disabled) { background: var(--green-mid); }
.coupon-pill-btn:disabled { opacity: 0.6; cursor: default; }

.coupon-msg {
  margin-top: 8px;
  padding: 0 14px;
  font-size: 13px;
  min-height: 20px;
}
.coupon-success { color: #276749; font-weight: 600; }
.coupon-error   { color: #C53030; font-weight: 500; }

/* ─── BUY NOW BUTTON (shop grid) ─────────────── */
.btn-buy-now {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: var(--green-deep);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  padding: 8px 14px;
  border-radius: 50px;
  transition: var(--transition);
  white-space: nowrap;
}
.product-card:hover .btn-buy-now {
  background: var(--green-mid);
}

/* ─── PRODUCT DETAIL PAGE ────────────────────── */
.product-detail-img-wrap {
  width: 100%;
  background: var(--green-light);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 260px;
  overflow: hidden;
}
.product-detail-img {
  width: 100%;
  max-height: 320px;
  object-fit: cover;
}
.product-detail-img-placeholder {
  font-size: 80px;
  padding: 40px 0;
}
.product-detail-body {
  padding: 22px 20px 32px;
}
.product-detail-name {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--green-deep);
  line-height: 1.25;
  margin-bottom: 8px;
}
.product-detail-stock {
  font-size: 13px;
  font-weight: 600;
  color: #276749;
  margin-bottom: 14px;
}
.product-detail-desc {
  font-size: 14px;
  color: var(--grey-mid);
  line-height: 1.75;
  margin-bottom: 24px;
}

/* ─── QTY SELECTOR ───────────────────────────── */
.product-qty-section {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 18px;
  margin-bottom: 22px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--grey-light);
}
.product-qty-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--grey-mid);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}
.product-qty-row {
  display: flex;
  align-items: center;
  gap: 14px;
}
.qty-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid var(--green-sage);
  background: var(--white);
  font-size: 20px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-deep);
  transition: var(--transition);
  line-height: 1;
}
.qty-btn:hover {
  background: var(--green-light);
}
.qty-num {
  font-size: 22px;
  font-weight: 700;
  color: var(--charcoal);
  min-width: 32px;
  text-align: center;
}
.product-total-price {
  margin-left: auto;
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--green-deep);
}
.product-unit-price {
  font-size: 12px;
  color: var(--grey-mid);
  margin-top: 8px;
}

/* ─── PRODUCT FORM ───────────────────────────── */
.product-detail-form {
  margin-bottom: 22px;
}

/* ─── SVG ICON SYSTEM ────────────────────────── */
.dw-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.dw-icon svg { width: 100%; height: 100%; }

/* Therapy icons in service cards */
.service-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--green-light);
  color: var(--green-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  flex-shrink: 0;
}
.service-icon svg { width: 22px; height: 22px; }

/* Therapy icons in services list */
.therapy-list-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--green-light);
  color: var(--green-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.therapy-list-icon svg { width: 24px; height: 24px; }

/* Large icon in service detail hero */
.service-icon-lg {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: rgba(255,255,255,0.15);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.service-icon-lg svg { width: 36px; height: 36px; }

/* Contact card icons */
.contact-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-icon-wrap svg { width: 22px; height: 22px; }
.contact-icon-wrap.green  { background: var(--green-light); color: var(--green-deep); }
.contact-icon-wrap.earth  { background: var(--earth-light); color: var(--earth); }
.contact-icon-wrap.blue   { background: #EBF8FF; color: #2B6CB0; }
.contact-icon-wrap.purple { background: #FAF5FF; color: #6B46C1; }

/* Value cards in About */
.value-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--green-light);
  color: var(--green-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}
.value-icon svg { width: 20px; height: 20px; }

/* Therapy editor icon in admin */
.therapy-edit-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--sage-bg);
  color: var(--g);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.therapy-edit-icon svg { width: 20px; height: 20px; }

/* ─── PWA INSTALL BANNER ─────────────────────── */
.pwa-banner {
  position: fixed;
  bottom: calc(var(--nav-h) + 12px);
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 24px);
  max-width: calc(var(--content-max) - 24px);
  background: var(--green-deep);
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 32px rgba(27,67,50,0.5);
  z-index: 980;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  animation: slide-up 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.pwa-banner-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(116,198,157,0.25);
  border: 1px solid rgba(116,198,157,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.pwa-banner-text {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.pwa-banner-text strong {
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}

.pwa-banner-text span {
  font-size: 11px;
  color: rgba(255,255,255,0.65);
  line-height: 1.3;
}

.pwa-install-btn {
  flex-shrink: 0;
  background: var(--green-sage);
  color: var(--green-deep);
  border: none;
  border-radius: 50px;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 700;
  padding: 9px 16px;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}
.pwa-install-btn:hover { background: var(--white); }

.pwa-dismiss-btn {
  flex-shrink: 0;
  background: transparent;
  border: none;
  color: rgba(255,255,255,0.45);
  font-size: 14px;
  cursor: pointer;
  padding: 4px;
  line-height: 1;
  transition: color 0.2s;
}
.pwa-dismiss-btn:hover { color: var(--white); }
