@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,400;1,500;1,600&family=DM+Sans:wght@300;400;500;600&display=swap');

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'DM Sans', sans-serif; font-size: 15px; color: #1C1A16; background: #fff; overflow-x: hidden; line-height: 1.6; }
img { max-width: 100%; display: block; height: auto; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; font-family: inherit; }
ul { list-style: none; }

/* ── Tokens ── */
:root {
  --gp: #298350; --gp-dark: #1B5C38; --gp-mid: #3BA068; --gp-light: #E8F5EE;
  --cream: #F8F5EF; --cream2: #EDE9DF; --cream3: #DDD9CE;
  --gold: #C8974A; --gold-lt: #F5EDDB;
  --char: #1C1A16; --stone: #4A4840; --mist: #9A9890;
  --r-sm: 6px; --r-md: 10px; --r-lg: 16px; --r-xl: 24px;
  --sh-sm: 0 2px 8px rgba(0,0,0,.06);
  --sh-md: 0 8px 32px rgba(0,0,0,.10);
  --sh-lg: 0 20px 60px rgba(0,0,0,.13);
  --tr: all .22s ease;
}

.container { max-width: 1260px; margin: 0 auto; padding: 0 32px; }

/* ════════════════════════════════
   ANNOUNCE BAR
════════════════════════════════ */
.announce-bar {
  background: var(--char); color: #fff;
  height: 40px; display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.ann-track { display: flex; align-items: center; justify-content: center; gap: 10px; font-size: 12px; }
.ann-slide { display: none; align-items: center; gap: 8px; font-weight: 400; }
.ann-slide.active { display: flex; }
.ann-slide strong { font-weight: 600; }
.ann-controls { position: absolute; right: 20px; top: 50%; transform: translateY(-50%); display: flex; gap: 5px; }
.ann-btn {
  background: none; border: 1px solid rgba(255,255,255,.25); border-radius: 50%;
  width: 22px; height: 22px; display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.8); font-size: 10px; transition: var(--tr);
}
.ann-btn:hover { background: rgba(255,255,255,.1); }

/* ════════════════════════════════
   SUB-NAV
════════════════════════════════ */
.subnav {
  background: var(--cream); border-bottom: 1px solid var(--cream2);
  height: 36px; display: flex; align-items: center;
}
.subnav .container { display: flex; align-items: center; justify-content: space-between; width: 100%; }
.subnav-left { display: flex; align-items: center; }
.subnav-link {
  font-size: 11.5px; color: var(--stone); padding: 0 13px; height: 36px;
  display: flex; align-items: center; gap: 5px; border-right: 1px solid var(--cream2);
  transition: var(--tr); white-space: nowrap;
}
.subnav-link:first-child { border-left: 1px solid var(--cream2); }
.subnav-link:hover { color: var(--gp); background: rgba(41,131,80,.04); }
.subnav-link.bold { font-weight: 600; color: var(--char); }
.subnav-right { display: flex; align-items: center; gap: 12px; }
.cur-tog { display: flex; border: 1px solid var(--cream3); border-radius: 20px; overflow: hidden; font-size: 11.5px; font-weight: 500; }
.cur-tog button { padding: 4px 11px; background: none; border: none; color: var(--stone); transition: var(--tr); }
.cur-tog button.active { background: var(--gp); color: #fff; }

/* ════════════════════════════════
   MAIN NAV
════════════════════════════════ */
.main-nav {
  background: #fff; border-bottom: 1px solid var(--cream2);
  position: sticky; top: 0; z-index: 1000; box-shadow: var(--sh-sm);
}
.nav-inner { display: flex; align-items: center; gap: 16px; height: 68px; }
.nav-logo { font-family: 'Cormorant Garamond', serif; font-size: 26px; font-weight: 600; color: var(--gp); flex-shrink: 0; margin-right: 4px; letter-spacing: -.01em; }
.nav-logo span { color: var(--char); }

.nav-links { display: flex; align-items: center; flex: 1; gap: 1px; }
.nav-item { position: relative; }
.nav-link {
  font-size: 13.5px; color: var(--stone); padding: 7px 12px; border-radius: var(--r-sm);
  display: flex; align-items: center; gap: 4px; transition: var(--tr); white-space: nowrap;
}
.nav-link:hover, .nav-link.active { color: var(--gp); }
.nav-link svg.caret { width: 11px; height: 11px; stroke: currentColor; fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; transition: transform .2s; flex-shrink: 0; }
.nav-item:hover .nav-link svg.caret { transform: rotate(180deg); }

/* Simple dropdown */
.simple-drop {
  position: absolute; top: calc(100% + 8px); left: 0;
  background: #fff; border: 1px solid var(--cream2); border-radius: var(--r-md);
  box-shadow: var(--sh-lg); padding: 7px; min-width: 190px;
  display: none; z-index: 2000;
}
.nav-item:hover .simple-drop { display: block; }
.drop-item {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 11px; border-radius: 7px; font-size: 13px;
  color: var(--stone); transition: background .12s; cursor: pointer;
}
.drop-item:hover { background: var(--gp-light); color: var(--gp); }
.drop-icon { font-size: 15px; width: 20px; text-align: center; flex-shrink: 0; }
.drop-divider { height: 1px; background: var(--cream2); margin: 5px 8px; }

/* Mega menu (Shop) */
.mega-menu {
  position: absolute; top: calc(100% + 8px); left: -20px;
  width: 760px; background: #fff; border: 1px solid var(--cream2);
  border-radius: var(--r-lg); box-shadow: var(--sh-lg);
  display: none; overflow: hidden; z-index: 2000;
}
.nav-item:hover .mega-menu { display: flex; }
.mega-sidebar { background: var(--char); width: 210px; flex-shrink: 0; padding: 18px 0; }
.mega-cat {
  display: flex; align-items: center; gap: 11px; padding: 10px 18px;
  cursor: pointer; transition: background .15s; border-left: 2px solid transparent;
}
.mega-cat:hover, .mega-cat.active { background: rgba(255,255,255,.07); border-left-color: var(--gp); }
.mega-cat-icon { width: 32px; height: 32px; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 16px; flex-shrink: 0; }
.mega-cat-name { font-size: 12.5px; font-weight: 500; color: #fff; display: block; }
.mega-cat-count { font-size: 10px; color: rgba(255,255,255,.4); display: block; margin-top: 1px; }
.mega-content { flex: 1; padding: 22px; display: flex; flex-direction: column; }
.mega-panel { display: none; flex-direction: column; }
.mega-panel.active { display: flex; }
.mega-panel-title { font-family: 'Cormorant Garamond', serif; font-size: 20px; font-weight: 500; color: var(--char); }
.mega-panel-sub { font-size: 11px; color: var(--mist); margin: 2px 0 13px; }
.mega-products { display: grid; grid-template-columns: repeat(3,1fr); gap: 9px; }
.mega-card {
  border: 1px solid var(--cream2); border-radius: var(--r-md);
  overflow: hidden; cursor: pointer; transition: border-color .18s, transform .18s;
}
.mega-card:hover { border-color: var(--gp); transform: translateY(-2px); }
.mega-card-img { height: 68px; display: flex; align-items: center; justify-content: center; font-size: 22px; }
.mega-card-body { padding: 7px 9px; }
.mega-card-name { font-size: 11.5px; font-weight: 500; color: var(--char); display: block; }
.mega-card-desc { font-size: 10px; color: var(--mist); margin-top: 1px; display: block; }
.mega-footer { display: flex; justify-content: space-between; margin-top: 13px; padding-top: 11px; border-top: 1px solid var(--cream2); }
.mega-link { font-size: 12px; font-weight: 500; color: var(--gp); display: flex; align-items: center; gap: 3px; transition: gap .2s; }
.mega-link:hover { gap: 7px; }
.mb-g { background: linear-gradient(135deg,#C8E8D0,#9DD4B0); }
.mb-o { background: linear-gradient(135deg,#FFE8C0,#F5D090); }
.mb-r { background: linear-gradient(135deg,#FFD0D0,#F5909A); }
.mb-y { background: linear-gradient(135deg,#FFFFF0,#F8E888); }
.mb-p { background: linear-gradient(135deg,#E4D0F8,#C8A0E8); }
.mb-t { background: linear-gradient(135deg,#C8F0F0,#90D4D4); }
.mini-btl { width: 20px; height: 54px; border-radius: 4px 4px 3px 3px; position: relative; display: flex; align-items: center; justify-content: center; box-shadow: 2px 4px 9px rgba(0,0,0,.2); }
.mini-btl::before { content: ''; position: absolute; top: -7px; width: 11px; height: 7px; border-radius: 2px 2px 0 0; background: rgba(0,0,0,.22); }
.mini-btl-lbl { width: 14px; height: 24px; background: rgba(255,255,255,.22); border-radius: 2px; display: flex; align-items: center; justify-content: center; }
.mini-btl-lbl span { font-size: 4px; font-weight: 700; color: rgba(255,255,255,.9); letter-spacing: .04em; }
.bcol-g { background: linear-gradient(170deg,#2D9E5A,#1B6B36); }
.bcol-o { background: linear-gradient(170deg,#E8831A,#C05A10); }
.bcol-r { background: linear-gradient(170deg,#C8283A,#961C28); }
.bcol-y { background: linear-gradient(170deg,#E8C020,#C09010); }
.bcol-p { background: linear-gradient(170deg,#7B3AB8,#5A2888); }
.bcol-t { background: linear-gradient(170deg,#1A9898,#0E6868); }
.bcol-pk { background: linear-gradient(170deg,#D8507A,#B83060); }
.bcol-br { background: linear-gradient(170deg,#8B5E3C,#6B4020); }

/* Nav actions - all equal-size icon buttons */
.nav-actions { display: flex; align-items: center; gap: 6px; flex-shrink: 0; }
.nav-icon-btn {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid var(--cream2); background: #fff;
  display: flex; align-items: center; justify-content: center;
  position: relative; transition: var(--tr);
}
.nav-icon-btn:hover { border-color: var(--gp); }
.nav-icon-btn svg { width: 17px; height: 17px; stroke: var(--stone); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.nav-icon-btn.loc-active { border-color: var(--gp); background: var(--gp-light); }
.nav-icon-btn.loc-active svg { stroke: var(--gp); }
.nav-badge {
  position: absolute; top: -3px; right: -3px;
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--gp); border: 2px solid #fff;
  font-size: 8px; font-weight: 700; color: #fff;
  display: flex; align-items: center; justify-content: center;
}

/* ════════════════════════════════
   LOCATION POPUP
════════════════════════════════ */
.loc-popup {
  position: absolute; top: calc(100% + 10px); right: 0;
  width: 320px; background: #fff; border: 1px solid var(--cream2);
  border-radius: var(--r-lg); box-shadow: var(--sh-lg);
  z-index: 3000; display: none; overflow: hidden;
}
.loc-popup.open { display: block; }
.loc-popup-header { padding: 18px 20px 14px; border-bottom: 1px solid var(--cream2); }
.loc-popup-title { font-family: 'Cormorant Garamond', serif; font-size: 19px; font-weight: 500; color: var(--char); margin-bottom: 3px; }
.loc-popup-sub { font-size: 11.5px; color: var(--mist); }
.loc-popup-body { padding: 14px; }
.loc-opt {
  display: flex; align-items: center; gap: 13px; padding: 13px 13px;
  border: 1.5px solid var(--cream2); border-radius: var(--r-md);
  margin-bottom: 8px; cursor: pointer; transition: var(--tr);
}
.loc-opt:last-child { margin-bottom: 0; }
.loc-opt:hover { border-color: var(--gp); background: var(--gp-light); }
.loc-opt.selected { border-color: var(--gp); background: var(--gp-light); }
.loc-radio { width: 18px; height: 18px; border-radius: 50%; border: 2px solid var(--cream3); flex-shrink: 0; display: flex; align-items: center; justify-content: center; transition: var(--tr); }
.loc-opt.selected .loc-radio { border-color: var(--gp); background: var(--gp); }
.loc-radio-dot { width: 7px; height: 7px; border-radius: 50%; background: #fff; opacity: 0; transition: opacity .15s; }
.loc-opt.selected .loc-radio-dot { opacity: 1; }
.loc-opt-icon { width: 36px; height: 36px; border-radius: 9px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.icon-bg-green { background: var(--gp-light); }
.icon-bg-blue  { background: #E8F2FF; }
.icon-bg-amber { background: #FFF3E0; }
.loc-opt-icon svg { width: 19px; height: 19px; fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.ico-green { stroke: var(--gp); }
.ico-blue  { stroke: #2970C8; }
.ico-amber { stroke: #B86800; }
.loc-opt-info { flex: 1; }
.loc-opt-title { font-size: 13.5px; font-weight: 500; color: var(--char); margin-bottom: 2px; }
.loc-opt-desc  { font-size: 11px; color: var(--mist); line-height: 1.4; }
.loc-opt-tag   { font-size: 10.5px; font-weight: 500; color: var(--gp); margin-top: 3px; }
.loc-popup-footer { padding: 10px 14px 16px; }
.loc-confirm-btn {
  width: 100%; padding: 11px; background: var(--gp); color: #fff; border: none;
  border-radius: var(--r-md); font-size: 13px; font-weight: 500;
  font-family: 'DM Sans', sans-serif; transition: var(--tr);
}
.loc-confirm-btn:hover { background: var(--gp-dark); }
.loc-zones-link { display: block; text-align: center; font-size: 11.5px; color: var(--mist); margin-top: 10px; cursor: pointer; }
.loc-zones-link span { color: var(--gp); font-weight: 500; }

/* ════════════════════════════════
   FULFILLMENT OVERLAY MODAL
════════════════════════════════ */
.overlay {
  position: fixed; inset: 0; background: rgba(28,26,22,.55);
  backdrop-filter: blur(4px); z-index: 9000;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity .3s;
}
.overlay.open { opacity: 1; pointer-events: all; }
.fulfill-modal {
  background: #fff; border-radius: var(--r-xl); padding: 36px;
  max-width: 460px; width: 90%; box-shadow: var(--sh-lg);
  transform: translateY(20px); transition: transform .35s;
}
.overlay.open .fulfill-modal { transform: translateY(0); }
.fulfill-title { font-family: 'Cormorant Garamond', serif; font-size: 26px; font-weight: 500; color: var(--char); margin-bottom: 5px; }
.fulfill-sub { font-size: 13px; color: var(--mist); margin-bottom: 20px; }
.fulfill-opt {
  display: flex; align-items: center; gap: 14px; padding: 15px;
  border: 1.5px solid var(--cream2); border-radius: var(--r-md);
  margin-bottom: 10px; cursor: pointer; transition: var(--tr);
}
.fulfill-opt:hover, .fulfill-opt.selected { border-color: var(--gp); background: var(--gp-light); }
.fulfill-radio { width: 20px; height: 20px; border-radius: 50%; border: 2px solid var(--cream3); flex-shrink: 0; display: flex; align-items: center; justify-content: center; transition: var(--tr); }
.fulfill-opt.selected .fulfill-radio { border-color: var(--gp); background: var(--gp); }
.fulfill-radio-dot { width: 8px; height: 8px; border-radius: 50%; background: #fff; opacity: 0; transition: opacity .15s; }
.fulfill-opt.selected .fulfill-radio-dot { opacity: 1; }
.fulfill-icon { font-size: 22px; }
.fulfill-info-title { font-size: 14.5px; font-weight: 500; color: var(--char); }
.fulfill-info-desc { font-size: 11.5px; color: var(--mist); margin-top: 2px; }
.fulfill-actions { display: flex; gap: 10px; margin-top: 18px; }
.fulfill-actions .btn { flex: 1; justify-content: center; }

/* ════════════════════════════════
   BUTTONS (shared)
════════════════════════════════ */
.btn {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 12px 26px; border-radius: 100px;
  font-family: 'DM Sans', sans-serif; font-size: 13.5px; font-weight: 500;
  letter-spacing: .02em; transition: var(--tr); border: none;
}
.btn-primary    { background: var(--gp); color: #fff; }
.btn-primary:hover { background: var(--gp-dark); }
.btn-outline    { background: transparent; border: 1.5px solid var(--gp); color: var(--gp); }
.btn-outline:hover { background: var(--gp-light); }
.btn-dark       { background: var(--char); color: #fff; }
.btn-dark:hover { background: var(--stone); }
.btn-ghost      { background: transparent; border: 1.5px solid var(--cream2); color: var(--stone); }
.btn-ghost:hover { border-color: var(--mist); }
.btn-white      { background: #fff; color: var(--char); }
.btn-white:hover { background: var(--cream); }
.btn-outline-white { background: transparent; border: 1.5px solid rgba(255,255,255,.45); color: #fff; }
.btn-outline-white:hover { border-color: rgba(255,255,255,.8); background: rgba(255,255,255,.08); }

/* ════════════════════════════════
   HERO SLIDER
════════════════════════════════ */
.hero { position: relative; overflow: hidden; }
.hero-slides { display: flex; transition: transform .6s cubic-bezier(.25,.46,.45,.94); }
.hero-slide {
  min-width: 100%; min-height: 560px; display: flex; align-items: center; position: relative; overflow: hidden;
}
.hero-slide-1 { background: linear-gradient(120deg,#1B5C38 0%,#298350 55%,#3BA068 100%); }
.hero-slide-2 { background: linear-gradient(120deg,#1C1A16 0%,#3A3530 55%,#4A4840 100%); }
.hero-slide-3 { background: linear-gradient(120deg,#7B3A10 0%,#C8974A 60%,#E8B870 100%); }
.hero-content {
  position: relative; z-index: 2;
  max-width: 1260px; margin: 0 auto; padding: 0 32px; width: 100%;
  display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 40px;
}
.hero-text { max-width: 520px; }
.hero-eyebrow {
  font-size: 11px; font-weight: 500; letter-spacing: .14em; text-transform: uppercase;
  color: rgba(255,255,255,.65); margin-bottom: 16px;
  display: flex; align-items: center; gap: 10px;
}
.hero-eyebrow::before { content: ''; width: 24px; height: 1px; background: rgba(255,255,255,.4); }
.hero-heading {
  font-family: 'Cormorant Garamond', serif; font-size: clamp(40px,5vw,58px);
  font-weight: 500; color: #fff; line-height: 1.05; letter-spacing: -.02em; margin-bottom: 18px;
}
.hero-heading em { font-style: italic; opacity: .9; }
.hero-para { font-size: 15px; color: rgba(255,255,255,.72); line-height: 1.7; margin-bottom: 28px; max-width: 400px; }
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-visual {
  display: flex; align-items: flex-end; justify-content: center; gap: 10px; padding-bottom: 20px;
}
.hero-bottle {
  border-radius: 10px 10px 8px 8px; position: relative;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  box-shadow: 4px 10px 24px rgba(0,0,0,.28); transition: transform .3s ease;
}
.hero-bottle:hover { transform: translateY(-6px); }
.hero-bottle::before {
  content: ''; position: absolute; top: -14px; width: 32px; height: 14px;
  border-radius: 4px 4px 0 0; background: rgba(0,0,0,.22);
}
.hero-bottle-label {
  width: 52px; border-radius: 4px; background: rgba(255,255,255,.2);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 3px; padding: 6px;
}
.hbl-logo { font-size: 9px; font-weight: 700; color: rgba(255,255,255,.95); letter-spacing: .08em; }
.hbl-name { font-size: 5.5px; color: rgba(255,255,255,.75); text-align: center; line-height: 1.3; }
.hero-dots { position: absolute; bottom: 24px; left: 32px; display: flex; gap: 8px; z-index: 10; }
.hero-dot {
  width: 8px; height: 8px; border-radius: 4px;
  background: rgba(255,255,255,.35); border: none; transition: all .3s; cursor: pointer;
}
.hero-dot.active { background: #fff; width: 24px; }
.hero-arrows { position: absolute; bottom: 20px; right: 32px; display: flex; gap: 8px; z-index: 10; }
.hero-arrow {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,.13); border: 1px solid rgba(255,255,255,.3);
  color: #fff; display: flex; align-items: center; justify-content: center;
  font-size: 14px; transition: var(--tr);
}
.hero-arrow:hover { background: rgba(255,255,255,.22); }

/* ════════════════════════════════
   TRUST STRIP
════════════════════════════════ */
.trust-strip { background: var(--gp); padding: 13px 0; }
.trust-strip-inner { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; }
.trust-item {
  display: flex; align-items: center; gap: 8px; padding: 0 26px;
  border-right: 1px solid rgba(255,255,255,.2);
  font-size: 12px; font-weight: 500; color: #fff; white-space: nowrap;
}
.trust-item:last-child { border-right: none; }
.trust-item svg { width: 15px; height: 15px; opacity: .8; stroke: #fff; fill: none; stroke-width: 2; }

/* ════════════════════════════════
   SECTION HELPERS
════════════════════════════════ */
.sec-eyebrow {
  font-size: 11px; font-weight: 500; letter-spacing: .14em; text-transform: uppercase;
  color: var(--gp); margin-bottom: 10px; display: flex; align-items: center; gap: 10px;
}
.sec-eyebrow::before { content: ''; width: 20px; height: 1px; background: var(--gp); opacity: .5; }
.sec-title {
  font-family: 'Cormorant Garamond', serif; font-size: clamp(28px,4vw,42px);
  font-weight: 500; color: var(--char); line-height: 1.1; letter-spacing: -.01em;
}
.sec-title em { font-style: italic; color: var(--gp); }
.sec-sub { font-size: 15px; color: var(--mist); margin-top: 10px; max-width: 520px; line-height: 1.6; }

/* ════════════════════════════════
   WELLNESS GOALS
════════════════════════════════ */
.wellness-sec { padding: 70px 0; background: #fff; }
.wellness-header { text-align: center; margin-bottom: 36px; }
.wellness-header .sec-eyebrow { justify-content: center; }
.wellness-header .sec-eyebrow::before { display: none; }
.wellness-grid { display: grid; grid-template-columns: repeat(9,1fr); gap: 10px; }
.wellness-pill {
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  padding: 17px 8px; border: 1px solid var(--cream2); border-radius: var(--r-lg);
  cursor: pointer; transition: var(--tr); background: #fff;
}
.wellness-pill:hover { border-color: var(--gp); background: var(--gp-light); }
.wellness-pill.active { background: var(--gp); border-color: var(--gp); }
.wellness-icon { font-size: 24px; }
.wellness-label { font-size: 11px; font-weight: 500; color: var(--stone); text-align: center; line-height: 1.3; letter-spacing: .02em; }
.wellness-pill.active .wellness-label { color: #fff; }

/* ════════════════════════════════
   PRODUCT CARDS (Home Best Sellers)
════════════════════════════════ */
.products-sec { padding: 70px 0; background: var(--cream); }
.products-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 36px; }
.products-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }

.product-card {
  background: #fff; border: 1px solid var(--cream2); border-radius: var(--r-lg);
  overflow: hidden; transition: var(--tr);
}
.product-card:hover { box-shadow: var(--sh-md); transform: translateY(-3px); }
.product-img {
  height: 200px; position: relative; display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.pi-green  { background: linear-gradient(145deg,#C0E8D0,#8ECFAA); }
.pi-orange { background: linear-gradient(145deg,#FFE4B0,#F5CC78); }
.pi-purple { background: linear-gradient(145deg,#E4CEFF,#C8A0F0); }
.pi-red    { background: linear-gradient(145deg,#FFC8C8,#F5909A); }

.product-bottle {
  border-radius: 10px 10px 8px 8px; position: relative;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  box-shadow: 4px 10px 24px rgba(0,0,0,.2); transition: transform .3s;
}
.product-card:hover .product-bottle { transform: scale(1.04) translateY(-4px); }
.product-bottle::before {
  content: ''; position: absolute; top: -13px; width: 28px; height: 13px;
  border-radius: 4px 4px 0 0; background: rgba(0,0,0,.22);
}
.product-bottle-label {
  width: 50px; border-radius: 4px; background: rgba(255,255,255,.22);
  display: flex; flex-direction: column; align-items: center; gap: 4px; padding: 7px 5px;
}
.pbl-logo { font-size: 9px; font-weight: 700; color: rgba(255,255,255,.95); letter-spacing: .08em; }
.pbl-name { font-size: 5.5px; color: rgba(255,255,255,.75); text-align: center; line-height: 1.3; }
.product-badges { position: absolute; top: 10px; left: 10px; display: flex; flex-direction: column; gap: 4px; }
.badge {
  display: inline-flex; align-items: center; gap: 4px; padding: 3px 10px;
  border-radius: 100px; font-size: 10.5px; font-weight: 500; letter-spacing: .03em;
}
.badge-dark  { background: var(--char); color: #fff; }
.badge-green { background: var(--gp-light); color: var(--gp-dark); }
.badge-gold  { background: var(--gold-lt); color: #7A5010; }
.badge-new   { background: var(--gp); color: #fff; }
.badge-top   { background: #FFF0D0; color: #8C5A00; }
.quick-view-btn {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: rgba(28,26,22,.82); color: #fff; font-size: 12px; font-weight: 500;
  letter-spacing: .06em; text-transform: uppercase; padding: 10px; text-align: center;
  border: none; width: 100%; opacity: 0; transition: opacity .2s;
}
.product-img:hover .quick-view-btn { opacity: 1; }
.product-body { padding: 14px; }
.product-category { font-size: 10px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--gp); margin-bottom: 4px; }
.product-name { font-family: 'Cormorant Garamond', serif; font-size: 19px; font-weight: 500; color: var(--char); margin-bottom: 5px; line-height: 1.15; }
.product-ingredients { font-size: 11px; color: var(--mist); line-height: 1.5; margin-bottom: 12px; }
.pack-selector { display: flex; gap: 5px; margin-bottom: 11px; }
.pack-opt {
  padding: 5px 11px; border-radius: 20px; font-size: 11.5px; font-weight: 500;
  border: 1.5px solid var(--cream2); color: var(--stone); background: none;
  transition: var(--tr); cursor: pointer;
}
.pack-opt:hover { border-color: var(--gp); color: var(--gp); }
.pack-opt.active { border-color: var(--gp); background: var(--gp-light); color: var(--gp); }
.product-footer { display: flex; align-items: center; justify-content: space-between; }
.product-price { font-size: 16px; font-weight: 600; color: var(--char); }
.product-save  { font-size: 10px; color: var(--gp); margin-top: 1px; }
.qty-ctrl { display: flex; align-items: center; border: 1.5px solid var(--gp); border-radius: 100px; }
.qty-btn { width: 30px; height: 30px; display: flex; align-items: center; justify-content: center; background: none; border: none; color: var(--gp); font-size: 18px; font-weight: 300; }
.qty-num { font-size: 13px; font-weight: 500; color: var(--gp); min-width: 24px; text-align: center; }
.add-to-cart-btn {
  width: 100%; margin-top: 10px; padding: 10px; background: var(--gp); color: #fff;
  border: none; border-radius: var(--r-md); font-size: 13px; font-weight: 500;
  letter-spacing: .03em; transition: var(--tr); font-family: 'DM Sans', sans-serif;
}
.add-to-cart-btn:hover { background: var(--gp-dark); }

/* ════════════════════════════════
   REWARDS
════════════════════════════════ */
.rewards-sec { padding: 80px 0; background: var(--char); position: relative; overflow: hidden; }
.rewards-sec::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 70% 50%,rgba(41,131,80,.18) 0%,transparent 70%); pointer-events: none; }
.rewards-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.rewards-text .sec-eyebrow { color: var(--gp-mid); }
.rewards-text .sec-eyebrow::before { background: var(--gp-mid); }
.rewards-text .sec-title { color: #fff; }
.rewards-text .sec-sub { color: rgba(255,255,255,.6); max-width: 400px; }
.perks-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 13px; margin-top: 26px; }
.perk-card { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); border-radius: var(--r-md); padding: 18px; transition: var(--tr); }
.perk-card:hover { background: rgba(255,255,255,.1); }
.perk-icon { font-size: 22px; margin-bottom: 9px; }
.perk-title { font-size: 13.5px; font-weight: 600; color: #fff; margin-bottom: 4px; }
.perk-desc { font-size: 12px; color: rgba(255,255,255,.5); line-height: 1.5; }
.rewards-ctas { display: flex; gap: 12px; margin-top: 26px; }
.btn-gp { background: var(--gp); color: #fff; border: none; }
.btn-gp:hover { background: var(--gp-mid); }
.btn-outline-lt { background: transparent; border: 1.5px solid rgba(255,255,255,.3); color: rgba(255,255,255,.8); }
.btn-outline-lt:hover { border-color: rgba(255,255,255,.6); }
.rewards-stats { display: flex; flex-direction: column; gap: 12px; }
.rstat-card { background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.1); border-radius: var(--r-md); padding: 20px 24px; display: flex; align-items: center; gap: 16px; }
.rstat-icon { width: 46px; height: 46px; border-radius: 12px; background: rgba(41,131,80,.25); display: flex; align-items: center; justify-content: center; font-size: 22px; flex-shrink: 0; }
.rstat-num { font-family: 'Cormorant Garamond', serif; font-size: 32px; font-weight: 500; color: #fff; line-height: 1; }
.rstat-label { font-size: 12px; color: rgba(255,255,255,.5); margin-top: 2px; }

/* ════════════════════════════════
   ABOUT
════════════════════════════════ */
.about-sec { padding: 80px 0; background: #fff; }
.about-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border-radius: var(--r-xl); overflow: hidden; border: 1px solid var(--cream2); box-shadow: var(--sh-md); }
.about-img-col {
  background: linear-gradient(145deg,#1B5C38 0%,#298350 60%,#3BA068 100%);
  min-height: 500px; position: relative; display: flex; flex-direction: column;
  align-items: center; justify-content: flex-end; padding: 36px; overflow: hidden;
}
.about-bottles { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-55%); display: flex; gap: 10px; align-items: flex-end; }
.abt-btl { border-radius: 10px 10px 8px 8px; position: relative; display: flex; flex-direction: column; align-items: center; justify-content: center; box-shadow: 4px 10px 24px rgba(0,0,0,.3); }
.abt-btl::before { content: ''; position: absolute; top: -12px; width: 26px; height: 12px; border-radius: 4px 4px 0 0; background: rgba(0,0,0,.2); }
.abt-btl-lbl { width: 44px; border-radius: 4px; background: rgba(255,255,255,.22); display: flex; align-items: center; justify-content: center; padding: 5px; }
.abt-btl-lbl span { font-size: 7px; font-weight: 700; color: rgba(255,255,255,.95); letter-spacing: .06em; }
.about-tag { position: relative; z-index: 2; background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.2); border-radius: 30px; padding: 10px 20px; display: flex; align-items: center; gap: 10px; }
.about-tag-dot { width: 8px; height: 8px; border-radius: 50%; background: #7FD4A0; flex-shrink: 0; }
.about-tag span { font-size: 12px; color: #fff; font-weight: 500; }
.about-text-col { background: var(--cream); padding: 54px 50px; display: flex; flex-direction: column; justify-content: center; }
.about-text-col p { font-size: 15px; color: var(--stone); line-height: 1.8; margin-bottom: 14px; }
.about-stats { display: flex; gap: 30px; padding: 22px 0; border-top: 1px solid var(--cream2); border-bottom: 1px solid var(--cream2); margin: 22px 0 28px; }
.abt-stat-num { font-family: 'Cormorant Garamond', serif; font-size: 34px; font-weight: 500; color: var(--gp); line-height: 1; }
.abt-stat-lbl { font-size: 12px; color: var(--mist); margin-top: 4px; }
.about-btns { display: flex; gap: 12px; }

/* ════════════════════════════════
   LOCATIONS
════════════════════════════════ */
.locations-sec { padding: 80px 0; background: var(--cream); }
.locations-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 36px; }
.locations-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.location-card { background: #fff; border: 1px solid var(--cream2); border-radius: var(--r-lg); overflow: hidden; transition: var(--tr); }
.location-card:hover { box-shadow: var(--sh-md); transform: translateY(-2px); }
.location-map { height: 130px; background: linear-gradient(135deg,#C8E0D0 0%,#A0C8B0 100%); position: relative; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.location-map::before { content: ''; position: absolute; inset: 0; background: repeating-linear-gradient(0deg,rgba(255,255,255,.07) 0,rgba(255,255,255,.07) 1px,transparent 1px,transparent 24px),repeating-linear-gradient(90deg,rgba(255,255,255,.07) 0,rgba(255,255,255,.07) 1px,transparent 1px,transparent 24px); }
.location-map-icon { font-size: 36px; position: relative; z-index: 1; }
.location-body { padding: 18px; }
.location-name { font-family: 'Cormorant Garamond', serif; font-size: 19px; font-weight: 600; color: var(--char); margin-bottom: 5px; }
.location-addr { font-size: 12px; color: var(--stone); line-height: 1.5; margin-bottom: 6px; }
.location-hours { font-size: 11px; color: var(--mist); margin-bottom: 12px; }
.location-tags { display: flex; gap: 5px; flex-wrap: wrap; margin-bottom: 14px; }
.location-tag { font-size: 10px; font-weight: 500; padding: 4px 10px; border-radius: 20px; border: 1px solid var(--cream2); color: var(--stone); }
.location-dir-btn { width: 100%; padding: 10px; border-radius: var(--r-md); border: 1.5px solid var(--cream2); background: transparent; color: var(--stone); font-size: 12.5px; font-weight: 500; font-family: 'DM Sans', sans-serif; transition: var(--tr); }
.location-dir-btn:hover { border-color: var(--gp); color: var(--gp); }

/* ════════════════════════════════
   REVIEWS (Trustindex)
════════════════════════════════ */
.reviews-sec { padding: 80px 0; background: #fff; }
.reviews-header { display: flex; align-items: flex-start; gap: 40px; margin-bottom: 36px; }
.rev-score-box { background: var(--gp-light); border-radius: var(--r-lg); padding: 24px 28px; text-align: center; flex-shrink: 0; min-width: 140px; }
.rev-score-num { font-family: 'Cormorant Garamond', serif; font-size: 52px; font-weight: 500; color: var(--char); line-height: 1; }
.rev-stars { color: #F5A623; font-size: 15px; margin: 6px 0; }
.rev-count { font-size: 11px; color: var(--mist); }
.ti-badge { display: flex; align-items: center; gap: 8px; border: 1px solid var(--cream2); border-radius: var(--r-sm); padding: 8px 12px; margin-top: 12px; }
.ti-icon { width: 22px; height: 22px; background: #00B67A; border-radius: 5px; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 13px; font-weight: 700; }
.ti-label { font-size: 11px; font-weight: 600; color: var(--char); }
.ti-sub { font-size: 9.5px; color: var(--mist); }
.rev-info { flex: 1; }
.rating-bars { display: flex; flex-direction: column; gap: 6px; margin-top: 14px; }
.rating-row { display: flex; align-items: center; gap: 10px; }
.rating-label { font-size: 11.5px; color: var(--stone); min-width: 28px; text-align: right; }
.rating-bar { flex: 1; height: 7px; background: var(--cream2); border-radius: 4px; overflow: hidden; }
.rating-fill { height: 100%; background: #00B67A; border-radius: 4px; transition: width .6s ease; }
.rating-pct { font-size: 11px; color: var(--mist); min-width: 32px; }
.reviews-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.review-card { background: var(--cream); border: 1px solid var(--cream2); border-radius: var(--r-lg); padding: 20px; position: relative; transition: var(--tr); }
.review-card:hover { box-shadow: var(--sh-sm); }
.ti-verified { position: absolute; top: 16px; right: 16px; background: #00B67A; border-radius: 4px; padding: 3px 8px; }
.ti-verified span { font-size: 9.5px; color: #fff; font-weight: 600; }
.review-top { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.reviewer-av { width: 38px; height: 38px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 600; flex-shrink: 0; }
.av-a { background: #E8D0F8; color: #6B2E9A; }
.av-b { background: #D0F0E8; color: #1A7A5A; }
.av-c { background: #F8E8D0; color: #9A5E20; }
.reviewer-name { font-size: 13.5px; font-weight: 500; color: var(--char); }
.reviewer-date { font-size: 10.5px; color: var(--mist); }
.review-stars { color: #F5A623; font-size: 13px; margin-bottom: 10px; letter-spacing: 1px; }
.review-text { font-size: 13px; color: var(--stone); line-height: 1.65; }
.reviews-cta { text-align: center; margin-top: 28px; }

/* ════════════════════════════════
   INSTAGRAM
════════════════════════════════ */
.instagram-sec { padding: 70px 0; background: var(--cream); }
.instagram-header { text-align: center; margin-bottom: 32px; }
.instagram-header .sec-eyebrow { justify-content: center; }
.instagram-header .sec-eyebrow::before { display: none; }
.insta-handle { font-size: 14px; color: var(--gp); font-weight: 500; margin-top: 4px; }
.instagram-grid { display: grid; grid-template-columns: repeat(6,1fr); gap: 10px; }
.insta-tile { aspect-ratio: 1; border-radius: var(--r-md); overflow: hidden; position: relative; cursor: pointer; }
.insta-inner { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-size: 32px; transition: transform .3s; }
.insta-tile:hover .insta-inner { transform: scale(1.06); }
.it-1 { background: linear-gradient(135deg,#C8E8D0,#8ECFAA); }
.it-2 { background: linear-gradient(135deg,#FFE4B0,#F5CC78); }
.it-3 { background: linear-gradient(135deg,#FFD0D0,#F5909A); }
.it-4 { background: linear-gradient(135deg,#D0EAF0,#90CAD8); }
.it-5 { background: linear-gradient(135deg,#E4D0F0,#C0A0E0); }
.it-6 { background: linear-gradient(135deg,#F0F0C8,#D8D890); }
.insta-overlay { position: absolute; inset: 0; background: rgba(41,131,80,.0); display: flex; align-items: center; justify-content: center; transition: background .25s; }
.insta-tile:hover .insta-overlay { background: rgba(41,131,80,.35); }
.insta-icon { opacity: 0; color: #fff; font-size: 22px; transition: opacity .25s; }
.insta-tile:hover .insta-icon { opacity: 1; }

/* ════════════════════════════════
   EMAIL / KLAVIYO
════════════════════════════════ */
.email-sec { padding: 72px 0; background: var(--gp); position: relative; overflow: hidden; }
.email-sec::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 30% 50%,rgba(255,255,255,.07) 0%,transparent 60%); }
.email-inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.email-text .sec-title { color: #fff; }
.email-text .sec-sub { color: rgba(255,255,255,.7); }
.email-text .sec-eyebrow { color: rgba(255,255,255,.65); }
.email-text .sec-eyebrow::before { background: rgba(255,255,255,.4); }
.email-perks { display: flex; gap: 18px; flex-wrap: wrap; margin-top: 12px; }
.email-perk { display: flex; align-items: center; gap: 6px; font-size: 12.5px; color: rgba(255,255,255,.75); }
.email-perk-dot { width: 6px; height: 6px; border-radius: 50%; background: rgba(255,255,255,.5); }
.email-form { display: flex; flex-direction: column; gap: 12px; }
.email-row { display: flex; gap: 10px; }
.email-input {
  flex: 1; height: 50px; border-radius: 100px;
  border: 2px solid rgba(255,255,255,.25); background: rgba(255,255,255,.1);
  color: #fff; font-size: 14px; font-family: 'DM Sans', sans-serif; padding: 0 20px; outline: none;
}
.email-input::placeholder { color: rgba(255,255,255,.5); }
.email-input:focus { border-color: rgba(255,255,255,.6); }
.email-submit {
  height: 50px; padding: 0 26px; border-radius: 100px; background: var(--char);
  color: #fff; border: none; font-size: 13.5px; font-weight: 500;
  font-family: 'DM Sans', sans-serif; white-space: nowrap; transition: var(--tr);
}
.email-submit:hover { background: var(--gp-dark); }
.email-note { font-size: 11.5px; color: rgba(255,255,255,.5); }

/* ════════════════════════════════
   FOOTER
════════════════════════════════ */
.footer { background: var(--char); padding: 60px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 50px; border-bottom: 1px solid rgba(255,255,255,.08); }
.footer-logo { font-family: 'Cormorant Garamond', serif; font-size: 24px; font-weight: 600; color: rgba(255,255,255,.9); margin-bottom: 12px; }
.footer-logo span { color: rgba(255,255,255,.55); }
.footer-tag { font-size: 13px; color: rgba(255,255,255,.45); line-height: 1.7; margin-bottom: 20px; max-width: 260px; }
.footer-socials { display: flex; gap: 8px; }
.social-ico { width: 34px; height: 34px; border-radius: 50%; border: 1px solid rgba(255,255,255,.15); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.5); font-size: 12px; transition: var(--tr); }
.social-ico:hover { border-color: var(--gp); color: var(--gp); }
.social-handle { font-size: 10.5px; color: rgba(255,255,255,.25); margin-top: 10px; }
.footer-col-title { font-family: 'Cormorant Garamond', serif; font-size: 17px; font-weight: 500; color: #fff; margin-bottom: 16px; }
.footer-link { display: block; font-size: 12.5px; color: rgba(255,255,255,.45); margin-bottom: 9px; transition: color .2s; }
.footer-link:hover { color: var(--gp-mid); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding: 18px 0; }
.footer-copy { font-size: 11.5px; color: rgba(255,255,255,.25); }
.footer-legal { display: flex; gap: 18px; }
.footer-legal a { font-size: 11.5px; color: rgba(255,255,255,.25); transition: color .2s; }
.footer-legal a:hover { color: rgba(255,255,255,.5); }

/* ════════════════════════════════
   SHOP PAGE
════════════════════════════════ */
.shop-hero { background: var(--gp-dark); padding: 48px 32px; text-align: center; }
.shop-hero h1 { font-family: 'Cormorant Garamond', serif; font-size: 42px; font-weight: 500; color: #fff; margin-bottom: 8px; letter-spacing: -.01em; }
.shop-hero p { font-size: 14px; color: rgba(255,255,255,.65); max-width: 480px; margin: 0 auto; line-height: 1.6; }

.cat-pills-bar { background: #fff; border-bottom: 1px solid var(--cream2); padding: 12px 20px; display: flex; gap: 7px; overflow-x: auto; }
.cat-pills-bar::-webkit-scrollbar { display: none; }
.cat-pill {
  padding: 7px 18px; border-radius: 20px; font-size: 13px; font-weight: 500;
  border: 1.5px solid var(--cream2); color: var(--stone); cursor: pointer;
  white-space: nowrap; background: #fff; transition: var(--tr); flex-shrink: 0;
}
.cat-pill:hover { border-color: var(--gp); color: var(--gp); }
.cat-pill.active { background: var(--gp); border-color: var(--gp); color: #fff; }

.shop-layout { display: grid; grid-template-columns: 220px 1fr; gap: 24px; padding: 28px 32px; max-width: 1260px; margin: 0 auto; }

/* Sidebar */
.shop-sidebar { background: #fff; border: 1px solid var(--cream2); border-radius: var(--r-lg); padding: 20px; height: fit-content; position: sticky; top: 90px; }
.sidebar-title { font-size: 14px; font-weight: 600; color: var(--char); margin-bottom: 16px; padding-bottom: 12px; border-bottom: 1px solid var(--cream2); }
.sidebar-section { margin-bottom: 20px; }
.sidebar-sec-title { font-size: 10.5px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--mist); margin-bottom: 11px; }
.filter-item { display: flex; align-items: center; justify-content: space-between; padding: 5px 0; cursor: pointer; }
.filter-left { display: flex; align-items: center; gap: 9px; }
.filter-check {
  width: 16px; height: 16px; border-radius: 3px;
  border: 1.5px solid var(--cream3); background: #fff;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  transition: var(--tr);
}
.filter-check.checked { background: var(--gp); border-color: var(--gp); }
.filter-check.checked::after { content: ''; width: 9px; height: 5px; border-left: 2px solid #fff; border-bottom: 2px solid #fff; transform: rotate(-45deg) translate(1px,-1px); display: block; }
.filter-label { font-size: 12.5px; color: var(--stone); }
.filter-count { font-size: 11px; color: var(--mist); }
.sidebar-divider { height: 1px; background: var(--cream2); margin: 16px 0; }
.clear-filters { width: 100%; padding: 9px; border-radius: var(--r-md); border: 1.5px solid var(--cream2); background: transparent; color: var(--stone); font-size: 12px; font-weight: 500; font-family: 'DM Sans', sans-serif; transition: var(--tr); margin-top: 4px; }
.clear-filters:hover { border-color: var(--gp); color: var(--gp); }

/* Product grid (shop) */
.shop-grid-wrap {}
.shop-grid-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.shop-grid-count { font-size: 13px; color: var(--mist); }
.shop-sort { font-size: 13px; color: var(--stone); border: 1px solid var(--cream2); border-radius: var(--r-md); padding: 7px 12px; background: #fff; cursor: pointer; font-family: 'DM Sans', sans-serif; outline: none; }
.shop-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; }

/* Shop product card */
.shop-card { background: #fff; border: 1px solid var(--cream2); border-radius: var(--r-lg); overflow: hidden; transition: var(--tr); }
.shop-card:hover { box-shadow: var(--sh-md); transform: translateY(-3px); }
.shop-card-img { height: 180px; position: relative; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.shop-card-img .quick-view-btn { opacity: 0; }
.shop-card-img:hover .quick-view-btn { opacity: 1; }
.shop-card-body { padding: 13px; }
.shop-card-name { font-family: 'Cormorant Garamond', serif; font-size: 17px; font-weight: 500; color: var(--char); margin-bottom: 4px; line-height: 1.2; }
.shop-card-ing { font-size: 11px; color: var(--mist); line-height: 1.45; margin-bottom: 8px; }
.shop-card-stars { display: flex; align-items: center; gap: 5px; margin-bottom: 10px; }
.star-val { color: #F5A623; font-size: 12px; letter-spacing: .5px; }
.star-count { font-size: 11px; color: var(--mist); }
.shop-card-footer { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.shop-card-price { font-size: 15px; font-weight: 600; color: var(--char); }
.shop-card-actions { display: flex; align-items: center; gap: 6px; }
.sc-qty-ctrl { display: flex; align-items: center; gap: 0; }
.sc-qty-btn { width: 26px; height: 26px; border-radius: 50%; border: 1.5px solid var(--cream2); background: #fff; color: var(--stone); font-size: 16px; font-weight: 300; display: flex; align-items: center; justify-content: center; transition: var(--tr); }
.sc-qty-btn:hover { border-color: var(--gp); color: var(--gp); }
.sc-qty-num { font-size: 13px; font-weight: 500; color: var(--char); min-width: 22px; text-align: center; }
.sc-add-btn { background: var(--gp); color: #fff; border: none; border-radius: var(--r-md); padding: 7px 14px; font-size: 12.5px; font-weight: 500; font-family: 'DM Sans', sans-serif; transition: var(--tr); }
.sc-add-btn:hover { background: var(--gp-dark); }

/* ════════════════════════════════
   FADE-UP ANIMATIONS
════════════════════════════════ */
.fade-up { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fd-1 { transition-delay: .1s; }
.fd-2 { transition-delay: .2s; }
.fd-3 { transition-delay: .3s; }
.fd-4 { transition-delay: .4s; }

/* ════════════════════════════════
   RESPONSIVE
════════════════════════════════ */
@media (max-width: 1100px) {
  .wellness-grid { grid-template-columns: repeat(5,1fr); }
  .products-grid { grid-template-columns: repeat(2,1fr); }
  .shop-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .hero-content { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .about-inner, .rewards-inner, .email-inner { grid-template-columns: 1fr; gap: 28px; }
  .about-img-col { min-height: 260px; }
  .locations-grid, .reviews-grid { grid-template-columns: 1fr 1fr; }
  .instagram-grid { grid-template-columns: repeat(3,1fr); }
  .shop-layout { grid-template-columns: 1fr; }
  .shop-sidebar { position: static; }
  .mega-menu { width: 100%; left: 0; }
}
@media (max-width: 640px) {
  .container { padding: 0 18px; }
  .subnav { display: none; }
  .wellness-grid { grid-template-columns: repeat(3,1fr); }
  .products-grid, .shop-grid { grid-template-columns: repeat(2,1fr); }
  .locations-grid, .reviews-grid { grid-template-columns: 1fr; }
  .instagram-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .email-inner { grid-template-columns: 1fr; }
  .reviews-header { flex-direction: column; }
}

.email-text .sec-title em {
    color: var(--gp-light);
}