/* ============================================================
   MERCY WELLNESS — Global Stylesheet
   Brand: Holistic, warm, natural | Nurse-led credibility
   Palette: Warm cream, sage green, terracotta, forest, ivory
   ============================================================ */

:root {
  /* Brand Colors */
  --color-cream:        #FAF6F0;
  --color-ivory:        #F2EBE0;
  --color-sage:         #7A9B76;
  --color-sage-light:   #A8C4A3;
  --color-sage-dark:    #4E7048;
  --color-terracotta:   #C47B5A;
  --color-terracotta-light: #D9967A;
  --color-forest:       #2E4A2B;
  --color-bark:         #6B4C3B;
  --color-stone:        #8C7B6E;
  --color-warm-white:   #FFFDF8;
  --color-text:         #2E2E2B;
  --color-text-muted:   #6B6459;
  --color-border:       #DDD4C7;

  /* Typography */
  --font-display:  'Playfair Display', Georgia, serif;
  --font-body:     'Inter', 'Helvetica Neue', sans-serif;
  --font-accent:   'Lato', sans-serif;

  /* Spacing */
  --space-xs:  0.5rem;
  --space-sm:  1rem;
  --space-md:  1.5rem;
  --space-lg:  2.5rem;
  --space-xl:  4rem;
  --space-2xl: 6rem;

  /* Sizing */
  --max-width: 1200px;
  --nav-height: 72px;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 24px;
  --radius-pill: 999px;

  /* Shadows */
  --shadow-sm: 0 1px 4px rgba(46,42,30,0.08);
  --shadow-md: 0 4px 16px rgba(46,42,30,0.10);
  --shadow-lg: 0 8px 32px rgba(46,42,30,0.12);

  /* Transitions */
  --transition: 0.25s ease;
}

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

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

body {
  background-color: var(--color-warm-white);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  min-height: 100vh;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── Typography ───────────────────────────────────────────── */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  line-height: 1.2;
  color: var(--color-forest);
  font-weight: 700;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.9rem); }
h4 { font-size: 1.2rem; }
h5 { font-size: 1rem; }

p { color: var(--color-text-muted); max-width: 68ch; }
p.large { font-size: 1.15rem; line-height: 1.75; }

.section-label {
  font-family: var(--font-accent);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-terracotta);
  margin-bottom: var(--space-sm);
  display: block;
}

/* ── Layout Utilities ─────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.section { padding: var(--space-xl) 0; }
.section-lg { padding: var(--space-2xl) 0; }

.text-center { text-align: center; }
.text-center p { margin: 0 auto; }

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  align-items: center;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
}

@media (max-width: 900px) {
  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: var(--radius-pill);
  font-family: var(--font-accent);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  min-height: 48px;
  white-space: nowrap;
}

.btn-primary {
  background: var(--color-sage-dark);
  color: var(--color-warm-white);
  border-color: var(--color-sage-dark);
}
.btn-primary:hover {
  background: var(--color-forest);
  border-color: var(--color-forest);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background: transparent;
  color: var(--color-forest);
  border-color: var(--color-forest);
}
.btn-secondary:hover {
  background: var(--color-forest);
  color: var(--color-warm-white);
  transform: translateY(-1px);
}

.btn-terracotta {
  background: var(--color-terracotta);
  color: var(--color-warm-white);
  border-color: var(--color-terracotta);
}
.btn-terracotta:hover {
  background: var(--color-bark);
  border-color: var(--color-bark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-outline-light {
  background: transparent;
  color: var(--color-warm-white);
  border-color: rgba(255,253,248,0.6);
}
.btn-outline-light:hover {
  background: rgba(255,253,248,0.15);
  border-color: var(--color-warm-white);
}

/* ── Navigation ───────────────────────────────────────────── */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-height);
  background: rgba(250,246,240,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
  transition: box-shadow var(--transition);
}

.site-nav.scrolled { box-shadow: var(--shadow-sm); }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-forest);
  line-height: 1;
}
.nav-logo span { color: var(--color-sage); }

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.nav-links a {
  font-family: var(--font-accent);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--color-text-muted);
  transition: color var(--transition);
  letter-spacing: 0.02em;
}
.nav-links a:hover { color: var(--color-forest); }
.nav-links a.active { color: var(--color-forest); font-weight: 600; }

.nav-cta { margin-left: var(--space-sm); }

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-forest);
  border-radius: 2px;
  transition: all 0.3s;
}

/* Mobile Nav */
.nav-mobile {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0;
  right: 0;
  background: var(--color-cream);
  border-bottom: 1px solid var(--color-border);
  padding: var(--space-md);
  z-index: 99;
  flex-direction: column;
  gap: var(--space-sm);
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-family: var(--font-accent);
  font-size: 1rem;
  color: var(--color-text);
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--color-border);
  font-weight: 500;
}
.nav-mobile a:last-of-type { border-bottom: none; }

@media (max-width: 860px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
}

/* ── Page Header Offset ───────────────────────────────────── */
.page-top { padding-top: var(--nav-height); }

/* ── Hero ─────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--color-cream);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(46,74,43,0.72) 0%, rgba(46,74,43,0.25) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  color: var(--color-warm-white);
  max-width: 680px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,253,248,0.18);
  border: 1px solid rgba(255,253,248,0.35);
  border-radius: var(--radius-pill);
  padding: 0.4rem 1rem;
  font-family: var(--font-accent);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-warm-white);
  margin-bottom: var(--space-md);
  backdrop-filter: blur(4px);
}

.hero-badge .dot {
  width: 6px;
  height: 6px;
  background: var(--color-sage-light);
  border-radius: 50%;
  display: inline-block;
}

.hero-content h1 {
  color: var(--color-warm-white);
  margin-bottom: var(--space-md);
  text-shadow: 0 2px 12px rgba(0,0,0,0.2);
}

.hero-content .hero-sub {
  font-size: 1.15rem;
  line-height: 1.7;
  color: rgba(255,253,248,0.88);
  max-width: 52ch;
  margin-bottom: var(--space-lg);
}

.hero-actions {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

/* ── Trust Bar ────────────────────────────────────────────── */
.trust-bar {
  background: var(--color-forest);
  padding: var(--space-md) 0;
}

.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xl);
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: rgba(255,253,248,0.85);
  font-family: var(--font-accent);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.03em;
}

.trust-item .icon {
  font-size: 1.2rem;
}

/* ── Cards ────────────────────────────────────────────────── */
.card {
  background: var(--color-warm-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.card-img {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--color-ivory);
}
.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.card:hover .card-img img { transform: scale(1.04); }

.card-body { padding: var(--space-md); }
.card-body h3 { margin-bottom: 0.5rem; }
.card-body h4 { font-family: var(--font-display); color: var(--color-forest); margin-bottom: 0.4rem; }

/* Product Cards */
.product-card { cursor: pointer; }
.product-price {
  font-family: var(--font-accent);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-terracotta);
  margin: var(--space-xs) 0;
}
.product-tag {
  display: inline-block;
  background: var(--color-ivory);
  color: var(--color-stone);
  font-size: 0.75rem;
  font-family: var(--font-accent);
  font-weight: 600;
  padding: 0.25rem 0.6rem;
  border-radius: var(--radius-pill);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.product-tag.tag-popular { background: var(--color-sage-light); color: var(--color-forest); }
.product-tag.tag-bundle { background: var(--color-terracotta-light); color: var(--color-warm-white); }
.product-rating {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  color: var(--color-terracotta);
  font-size: 0.88rem;
  margin-bottom: var(--space-xs);
}
.stars { letter-spacing: -1px; }

/* ── Section Variants ─────────────────────────────────────── */
.bg-cream { background: var(--color-cream); }
.bg-ivory { background: var(--color-ivory); }
.bg-forest { background: var(--color-forest); }
.bg-sage { background: var(--color-sage); }

/* ── Testimonials ─────────────────────────────────────────── */
.testimonial-card {
  background: var(--color-warm-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  position: relative;
}

.testimonial-card::before {
  content: '\201C';
  font-family: var(--font-display);
  font-size: 4rem;
  color: var(--color-sage-light);
  position: absolute;
  top: 0.5rem;
  left: 1.5rem;
  line-height: 1;
  opacity: 0.6;
}

.testimonial-text {
  font-size: 1.0rem;
  line-height: 1.75;
  color: var(--color-text);
  font-style: italic;
  margin-bottom: var(--space-md);
  padding-top: 1.5rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.testimonial-author .avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-ivory);
  border: 2px solid var(--color-sage-light);
  object-fit: cover;
}
.testimonial-author-name {
  font-family: var(--font-accent);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--color-forest);
}
.testimonial-author-note {
  font-size: 0.8rem;
  color: var(--color-stone);
}

/* ── About Split ──────────────────────────────────────────── */
.about-img {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--color-ivory);
}
.about-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-img .credential-badge {
  position: absolute;
  bottom: var(--space-md);
  left: var(--space-md);
  background: var(--color-warm-white);
  border-radius: var(--radius-md);
  padding: 0.75rem 1rem;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-accent);
}
.credential-badge .badge-icon {
  width: 36px;
  height: 36px;
  background: var(--color-sage);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--color-warm-white);
  flex-shrink: 0;
}
.credential-badge .badge-label {
  font-size: 0.8rem;
  color: var(--color-stone);
  line-height: 1.2;
}
.credential-badge .badge-value {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-forest);
}

/* ── FAQ ──────────────────────────────────────────────────── */
.faq-item {
  border-bottom: 1px solid var(--color-border);
}
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-md) 0;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--color-forest);
  gap: var(--space-sm);
  user-select: none;
}
.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid var(--color-sage);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
  color: var(--color-sage-dark);
  transition: transform var(--transition), background var(--transition);
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--color-sage);
  color: var(--color-warm-white);
  border-color: var(--color-sage);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.2s ease;
}
.faq-item.open .faq-answer { max-height: 400px; }
.faq-answer-inner {
  padding-bottom: var(--space-md);
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* ── Forms ────────────────────────────────────────────────── */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: var(--space-md);
}

.form-label {
  font-family: var(--font-accent);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-forest);
  letter-spacing: 0.03em;
}

.form-input,
.form-select,
.form-textarea {
  padding: 0.85rem 1rem;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: var(--color-warm-white);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color var(--transition), box-shadow var(--transition);
  min-height: 48px;
  width: 100%;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--color-sage);
  box-shadow: 0 0 0 3px rgba(122,155,118,0.15);
}
.form-textarea { resize: vertical; min-height: 130px; }

.form-success {
  display: none;
  background: var(--color-sage-light);
  color: var(--color-forest);
  border-radius: var(--radius-sm);
  padding: 1rem;
  margin-top: var(--space-sm);
  font-family: var(--font-accent);
  font-weight: 600;
  text-align: center;
}
.form-error {
  display: none;
  background: #FDE8E0;
  color: #8B3A24;
  border-radius: var(--radius-sm);
  padding: 1rem;
  margin-top: var(--space-sm);
  font-family: var(--font-accent);
  font-weight: 600;
  text-align: center;
}

/* ── Blog ─────────────────────────────────────────────────── */
.blog-card .card-img { aspect-ratio: 16/9; }
.blog-meta {
  font-family: var(--font-accent);
  font-size: 0.8rem;
  color: var(--color-stone);
  letter-spacing: 0.04em;
  margin-bottom: 0.4rem;
}
.blog-excerpt {
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--color-text-muted);
  margin: 0.5rem 0 var(--space-sm);
}
.read-more {
  font-family: var(--font-accent);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-sage-dark);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  transition: gap var(--transition);
}
.read-more:hover { gap: 0.6rem; }

/* ── Newsletter Strip ─────────────────────────────────────── */
.newsletter-strip {
  background: linear-gradient(135deg, var(--color-sage-dark) 0%, var(--color-forest) 100%);
  padding: var(--space-xl) 0;
  color: var(--color-warm-white);
}

.newsletter-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.newsletter-form {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
}
.newsletter-form .form-input {
  flex: 1;
  min-width: 220px;
  background: rgba(255,253,248,0.1);
  border-color: rgba(255,253,248,0.3);
  color: var(--color-warm-white);
}
.newsletter-form .form-input::placeholder { color: rgba(255,253,248,0.6); }
.newsletter-form .form-input:focus {
  border-color: var(--color-sage-light);
  box-shadow: 0 0 0 3px rgba(168,196,163,0.2);
}

@media (max-width: 760px) {
  .newsletter-inner { grid-template-columns: 1fr; }
}

/* ── Booking ──────────────────────────────────────────────── */
.booking-embed {
  background: var(--color-cream);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  text-align: center;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
}
.booking-embed .embed-icon { font-size: 3rem; }
.booking-embed p { color: var(--color-text-muted); font-size: 0.95rem; }

/* ── Footer ───────────────────────────────────────────────── */
.site-footer {
  background: var(--color-forest);
  color: rgba(255,253,248,0.7);
  padding: var(--space-xl) 0 var(--space-md);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

.footer-brand .nav-logo { margin-bottom: var(--space-sm); }
.footer-brand .nav-logo, .footer-brand .nav-logo span { color: var(--color-warm-white); }
.footer-brand p { font-size: 0.9rem; line-height: 1.7; max-width: 30ch; color: rgba(255,253,248,0.6); }

.footer-col h5 {
  font-family: var(--font-accent);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,253,248,0.5);
  margin-bottom: var(--space-sm);
}
.footer-col a {
  display: block;
  font-size: 0.9rem;
  color: rgba(255,253,248,0.75);
  margin-bottom: 0.4rem;
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--color-warm-white); }

.footer-bottom {
  border-top: 1px solid rgba(255,253,248,0.1);
  padding-top: var(--space-md);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-sm);
}
.footer-bottom p { font-size: 0.82rem; color: rgba(255,253,248,0.4); max-width: none; }

.footer-social {
  display: flex;
  gap: var(--space-sm);
}
.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,253,248,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: rgba(255,253,248,0.6);
  transition: all var(--transition);
}
.footer-social a:hover {
  background: rgba(255,253,248,0.12);
  color: var(--color-warm-white);
  border-color: rgba(255,253,248,0.4);
}

.disclaimer {
  background: rgba(0,0,0,0.15);
  padding: var(--space-md);
  border-radius: var(--radius-sm);
  margin-top: var(--space-md);
  font-size: 0.78rem;
  color: rgba(255,253,248,0.4);
  line-height: 1.6;
}

@media (max-width: 860px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 540px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ── Page Hero (inner pages) ──────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--color-forest) 0%, var(--color-sage-dark) 100%);
  padding: calc(var(--nav-height) + var(--space-xl)) 0 var(--space-xl);
  color: var(--color-warm-white);
  text-align: center;
}
.page-hero h1 { color: var(--color-warm-white); margin-bottom: var(--space-sm); }
.page-hero p { color: rgba(255,253,248,0.8); margin: 0 auto; }

/* ── Feature Row ──────────────────────────────────────────── */
.feature-row { display: flex; flex-direction: column; gap: var(--space-xl); }
.feature-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}
.feature-block.reverse { direction: rtl; }
.feature-block.reverse > * { direction: ltr; }

.feature-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 5/4;
  background: var(--color-ivory);
}
.feature-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 760px) {
  .feature-block { grid-template-columns: 1fr; }
  .feature-block.reverse { direction: ltr; }
}

/* ── Pricing / Consulting Cards ───────────────────────────── */
.consult-card {
  background: var(--color-warm-white);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  transition: all var(--transition);
}
.consult-card.featured {
  border-color: var(--color-sage);
  box-shadow: 0 0 0 2px var(--color-sage-light);
}
.consult-card h3 { margin-bottom: var(--space-xs); }
.consult-price {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--color-terracotta);
  margin: var(--space-sm) 0;
}
.consult-price small {
  font-size: 1rem;
  color: var(--color-stone);
  font-family: var(--font-accent);
}
.consult-features { margin: var(--space-md) 0; }
.consult-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  padding: 0.4rem 0;
  font-size: 0.95rem;
  color: var(--color-text-muted);
  border-bottom: 1px solid var(--color-border);
}
.consult-features li:last-child { border-bottom: none; }
.consult-features .check { color: var(--color-sage-dark); font-size: 1.1rem; flex-shrink: 0; }

/* ── Sourcing / Quality ───────────────────────────────────── */
.quality-stat {
  text-align: center;
  padding: var(--space-md);
}
.quality-stat .stat-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--color-terracotta);
  display: block;
  margin-bottom: 0.25rem;
}
.quality-stat .stat-label {
  font-family: var(--font-accent);
  font-size: 0.88rem;
  color: var(--color-stone);
  letter-spacing: 0.05em;
}

/* ── Product Detail ───────────────────────────────────────── */
.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: start;
  margin-top: var(--space-xl);
}
.product-gallery {
  position: sticky;
  top: calc(var(--nav-height) + var(--space-md));
}
.product-main-img {
  width: 100%;
  aspect-ratio: 1;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--color-ivory);
  margin-bottom: var(--space-sm);
}
.product-main-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-thumbs {
  display: flex;
  gap: 0.5rem;
}
.product-thumb {
  width: 70px;
  height: 70px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  background: var(--color-ivory);
  transition: border-color var(--transition);
}
.product-thumb.active { border-color: var(--color-sage); }
.product-thumb img { width: 100%; height: 100%; object-fit: cover; }

.product-info h1 { font-size: clamp(1.6rem, 3vw, 2.4rem); margin-bottom: var(--space-sm); }
.product-detail-price {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-terracotta);
  margin: var(--space-sm) 0;
}
.product-options { margin: var(--space-md) 0; }
.option-label {
  font-family: var(--font-accent);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-stone);
  margin-bottom: 0.4rem;
}
.option-buttons { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.option-btn {
  padding: 0.5rem 1rem;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: var(--color-warm-white);
  font-family: var(--font-accent);
  font-size: 0.88rem;
  cursor: pointer;
  transition: all var(--transition);
  min-height: 44px;
}
.option-btn.active, .option-btn:hover {
  border-color: var(--color-sage-dark);
  color: var(--color-sage-dark);
  background: var(--color-cream);
}

.add-to-cart {
  width: 100%;
  margin-top: var(--space-md);
  padding: 1rem;
  font-size: 1rem;
}

@media (max-width: 760px) {
  .product-detail-grid { grid-template-columns: 1fr; }
  .product-gallery { position: static; }
}

/* ── Shop Filter Bar ──────────────────────────────────────── */
.filter-bar {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
  align-items: center;
  padding: var(--space-md) 0;
  border-bottom: 1px solid var(--color-border);
  margin-bottom: var(--space-lg);
}
.filter-btn {
  padding: 0.5rem 1.1rem;
  border-radius: var(--radius-pill);
  border: 1.5px solid var(--color-border);
  background: transparent;
  font-family: var(--font-accent);
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  color: var(--color-text-muted);
  transition: all var(--transition);
  min-height: 44px;
}
.filter-btn.active, .filter-btn:hover {
  background: var(--color-forest);
  border-color: var(--color-forest);
  color: var(--color-warm-white);
}

/* ── Utility Classes ──────────────────────────────────────── */
.mt-sm { margin-top: var(--space-sm); }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }
.mb-sm { margin-bottom: var(--space-sm); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }

.hidden { display: none !important; }
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ── Animations ───────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp 0.6s ease both; }
.fade-up-2 { animation: fadeUp 0.6s 0.15s ease both; }
.fade-up-3 { animation: fadeUp 0.6s 0.3s ease both; }
