/* =========================================================
   MEDSONET PHARMACY — Core Stylesheet
   Design system: apothecary-label / botanical-pharmacy
   ========================================================= */

:root{
  /* --- Color tokens --- */
  --paper:      #F2F5EF;
  --paper-deep: #E9EEE5;
  --ink:        #16302A;
  --ink-soft:   #2E4A40;
  --sage:       #DCE7DD;
  --sage-line:  #C2D4C4;
  --sage-deep:  #A9C2AC;
  --cardinal:   #B23F26;
  --cardinal-dk:#8E3018;
  --honey:      #CE9A34;
  --honey-lt:   #F3E3BE;
  --muted:      #5C6E63;
  --white:      #FFFFFF;
  --wa:         #25D366;

  /* --- Type --- */
  --f-display: 'Fraunces', serif;
  --f-body:    'Public Sans', sans-serif;
  --f-label:   'Space Mono', monospace;

  /* --- Shape / motion --- */
  --r:    14px;
  --r-lg: 22px;
  --r-xl: 32px;
  --tr:   .35s cubic-bezier(.4,0,.2,1);
  --sh-sm: 0 2px 10px rgba(22,48,42,.07);
  --sh-md: 0 10px 30px rgba(22,48,42,.10);
  --sh-lg: 0 24px 60px rgba(22,48,42,.16);
}

*,*::before,*::after{ box-sizing:border-box; margin:0; padding:0; }
html{ scroll-behavior:smooth; }
body{
  font-family:var(--f-body);
  background:var(--paper);
  color:var(--ink);
  font-size:16px;
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
ul{ list-style:none; }
button{ font-family:inherit; border:none; background:none; cursor:pointer; }
input,textarea,select{ font-family:inherit; }
:focus-visible{ outline:2.5px solid var(--cardinal); outline-offset:2px; }
.container{ max-width:1240px; margin:0 auto; padding:0 24px; }
.pad-lg{ padding:88px 0; }
main{ overflow-x:hidden; }

/* Reduced motion */
@media (prefers-reduced-motion: reduce){
  *{ animation-duration:.001ms !important; animation-iteration-count:1 !important; transition-duration:.001ms !important; scroll-behavior:auto !important; }
}

h1,h2,h3,h4{ font-family:var(--f-display); color:var(--ink); font-weight:600; line-height:1.15; }

.eyebrow{
  display:inline-flex; align-items:center; gap:8px;
  font-family:var(--f-label); font-size:.72rem; letter-spacing:.14em; text-transform:uppercase;
  color:var(--cardinal); font-weight:700; margin-bottom:14px;
}
.eyebrow::before{ content:''; width:18px; height:1.5px; background:var(--cardinal); display:inline-block; }
.section-title{ font-size:clamp(1.7rem,3.2vw,2.6rem); margin-bottom:14px; }
.sub{ color:var(--muted); font-size:1rem; max-width:560px; }
.tc{ text-align:center; }
.tc .sub{ margin:0 auto; }

/* --- Buttons --- */
.btn{
  display:inline-flex; align-items:center; gap:9px;
  font-family:var(--f-body); font-weight:700; font-size:.86rem;
  padding:14px 26px; border-radius:100px; transition:var(--tr);
  white-space:nowrap;
}
.btn svg{ width:15px; height:15px; flex-shrink:0; }
.btn-primary{ background:var(--cardinal); color:var(--white); box-shadow:var(--sh-sm); }
.btn-primary:hover{ background:var(--cardinal-dk); transform:translateY(-2px); box-shadow:var(--sh-md); }
.btn-outline{ background:transparent; color:var(--ink); border:1.5px solid rgba(22,48,42,.25); }
.btn-outline:hover{ border-color:var(--ink); background:rgba(22,48,42,.05); }
.btn-outline-light{ background:transparent; color:var(--white); border:1.5px solid rgba(255,255,255,.4); }
.btn-outline-light:hover{ border-color:var(--white); background:rgba(255,255,255,.1); }
.btn-wa{ background:var(--wa); color:var(--white); }
.btn-wa:hover{ background:#1DA851; transform:translateY(-2px); box-shadow:var(--sh-md); }
.btn-honey{ background:var(--honey); color:var(--ink); }
.btn-honey:hover{ background:#B8871F; }
.btn-sm{ padding:10px 18px; font-size:.78rem; }

/* =========================================================
   HEADER
   ========================================================= */
.site-hdr{ position:sticky; top:0; z-index:900; width:100%; transition:var(--tr); }
.hdr-announce{
  background:var(--ink); color:rgba(255,255,255,.82);
  font-family:var(--f-label); font-size:.72rem; letter-spacing:.02em;
}
.hdr-announce-inner{ display:flex; align-items:center; justify-content:space-between; height:38px; gap:16px; }
.announce-left{ display:flex; align-items:center; gap:10px; }
.announce-sep{ opacity:.35; }
.announce-right{ display:flex; align-items:center; gap:10px; }
.announce-link{ display:flex; align-items:center; gap:6px; color:var(--honey-lt); transition:var(--tr); }
.announce-link:hover{ color:var(--white); }
.announce-link svg{ width:12px; height:12px; }

.hdr-main{ background:var(--paper); border-bottom:1px solid var(--sage-line); transition:var(--tr); }
.site-hdr.scrolled .hdr-main{ box-shadow:var(--sh-sm); }
.hdr-main-inner{ display:flex; align-items:center; gap:28px; height:78px; }
.hdr-logo{ display:flex; align-items:center; gap:11px; flex-shrink:0; }
.hdr-logo-icon{
  width:42px; height:42px; border-radius:12px; background:var(--ink);
  display:flex; align-items:center; justify-content:center; flex-shrink:0;
}
.hdr-logo-txt{ display:flex; flex-direction:column; line-height:1.1; }
.hdr-logo-name{ font-family:var(--f-display); font-weight:700; font-size:1.28rem; letter-spacing:.01em; color:var(--ink); }
.hdr-logo-sub{ font-family:var(--f-label); font-size:.62rem; letter-spacing:.22em; color:var(--cardinal); }

.hdr-searchbar{
  flex:1; max-width:420px; display:flex; align-items:center; gap:10px;
  background:var(--white); border:1.5px solid var(--sage-line); border-radius:100px;
  padding:11px 18px; transition:var(--tr);
}
.hdr-searchbar:focus-within{ border-color:var(--cardinal); }
.hdr-search-ico{ width:16px; height:16px; color:var(--muted); flex-shrink:0; }
.hdr-search-input{ flex:1; border:none; background:none; font-size:.85rem; color:var(--ink); }
.hdr-search-input:focus{ outline:none; }
.hdr-search-btn{ display:none; }

.hdr-main-right{ display:flex; align-items:center; gap:14px; margin-left:auto; }
.hdr-rx-btn{
  display:flex; align-items:center; gap:8px; font-weight:700; font-size:.82rem;
  background:var(--ink); color:var(--white); padding:12px 20px; border-radius:100px; transition:var(--tr);
}
.hdr-rx-btn svg{ width:15px; height:15px; }
.hdr-rx-btn:hover, .hdr-rx-btn--on{ background:var(--cardinal); }
.hdr-burger{ display:none; flex-direction:column; gap:5px; width:26px; }
.hdr-burger span{ height:2px; background:var(--ink); border-radius:2px; transition:var(--tr); }
.hdr-burger.open span:nth-child(1){ transform:translateY(7px) rotate(45deg); }
.hdr-burger.open span:nth-child(2){ opacity:0; }
.hdr-burger.open span:nth-child(3){ transform:translateY(-7px) rotate(-45deg); }
.hdr-mob-search{ display:none; }

.hdr-nav{ background:var(--ink); }
.hdr-nav-list{ display:flex; align-items:center; gap:2px; }
.nav-item{ position:relative; }
.nav-lnk{
  display:flex; align-items:center; gap:5px; padding:15px 18px;
  font-size:.86rem; font-weight:600; color:rgba(255,255,255,.82); transition:var(--tr); white-space:nowrap;
}
.nav-item.active .nav-lnk, .nav-lnk:hover{ color:var(--white); background:rgba(255,255,255,.06); }
.nav-caret{ width:11px; height:11px; transition:var(--tr); }
.has-dd:hover .nav-caret{ transform:rotate(180deg); }
.nav-drop{
  position:absolute; top:100%; left:0; min-width:210px; background:var(--white);
  border-radius:0 0 var(--r) var(--r); box-shadow:var(--sh-lg); padding:10px;
  opacity:0; visibility:hidden; transform:translateY(-8px); transition:var(--tr); z-index:50;
}
.has-dd:hover .nav-drop{ opacity:1; visibility:visible; transform:translateY(0); }
.drop-lnk{ display:flex; align-items:center; gap:10px; padding:10px 14px; border-radius:8px; font-size:.84rem; color:var(--ink-soft); font-weight:600; transition:var(--tr); }
.drop-lnk:hover{ background:var(--sage); color:var(--ink); }
.drop-dot{ width:5px; height:5px; border-radius:50%; background:var(--cardinal); flex-shrink:0; }
.nav-mob-only{ display:none; }

/* =========================================================
   HERO
   ========================================================= */
.hero{ position:relative; background:var(--ink); overflow:hidden; }
.hero::before{
  content:''; position:absolute; inset:0;
  background:
    radial-gradient(circle at 85% 20%, rgba(206,154,52,.16), transparent 45%),
    radial-gradient(circle at 10% 90%, rgba(178,63,38,.14), transparent 40%);
}
.h-inner{ position:relative; display:grid; grid-template-columns:1.05fr .95fr; gap:56px; align-items:center; padding:84px 0 96px; }
.h-eyebrow{
  display:inline-flex; align-items:center; gap:9px; font-family:var(--f-label); font-size:.72rem;
  letter-spacing:.14em; text-transform:uppercase; color:var(--honey); font-weight:700; margin-bottom:20px;
}
.h-eyebrow svg{ width:13px; height:13px; }
.h-title{ font-size:clamp(2.3rem,4.2vw,3.5rem); color:var(--white); margin-bottom:20px; }
.h-title span{ color:var(--honey); font-style:italic; }
.h-desc{ color:rgba(255,255,255,.68); font-size:1.05rem; max-width:460px; margin-bottom:32px; }
.h-btns{ display:flex; flex-wrap:wrap; gap:14px; margin-bottom:44px; }
.h-stats{ display:flex; gap:36px; }
.h-stat-n{ font-family:var(--f-display); font-size:1.7rem; font-weight:700; color:var(--white); }
.h-stat-l{ font-size:.76rem; color:rgba(255,255,255,.55); font-family:var(--f-label); letter-spacing:.06em; text-transform:uppercase; margin-top:2px; }

/* Signature: layered apothecary label cards */
.h-visual{ position:relative; height:440px; }
.h-photo{
  position:absolute; right:0; top:18px; width:250px; height:330px; border-radius:var(--r-xl);
  overflow:hidden; box-shadow:var(--sh-lg); border:6px solid rgba(255,255,255,.08);
}
.h-photo img{ width:100%; height:100%; object-fit:cover; }
.label-card{
  position:relative; background:var(--paper); border-radius:6px 6px var(--r) var(--r);
  padding:20px 22px 18px; box-shadow:var(--sh-lg);
}
.label-card::before{
  content:''; position:absolute; top:-1px; left:0; right:0; height:10px;
  background-image:repeating-linear-gradient(90deg, var(--ink) 0 6px, transparent 6px 13px);
  background-position:top; opacity:.5;
}
.label-card::after{
  content:''; position:absolute; top:-9px; left:50%; transform:translateX(-50%);
  width:9px; height:9px; border-radius:50%; background:var(--ink);
}
.hl-1{ position:absolute; left:0; top:0; width:230px; transform:rotate(-6deg); z-index:3; }
.hl-2{ position:absolute; left:50px; top:190px; width:210px; transform:rotate(4deg); z-index:2; }
.hl-cat{ font-family:var(--f-label); font-size:.62rem; letter-spacing:.1em; text-transform:uppercase; color:var(--cardinal); font-weight:700; }
.hl-title{ font-family:var(--f-display); font-size:1.05rem; font-weight:600; margin:5px 0 6px; }
.hl-txt{ font-size:.78rem; color:var(--muted); line-height:1.45; }

/* =========================================================
   CATEGORY CARDS (signature icon system)
   ========================================================= */
.cat-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:24px; margin-top:48px; }
.cat-card{
  background:var(--white); border-radius:var(--r-lg); padding:34px 26px; text-align:left;
  border:1px solid var(--sage-line); transition:var(--tr); position:relative; overflow:hidden;
}
.cat-card:hover{ transform:translateY(-8px) rotate(-.6deg); box-shadow:var(--sh-lg); border-color:transparent; }
.cat-ico{
  width:58px; height:58px; border-radius:16px; display:flex; align-items:center; justify-content:center;
  margin-bottom:22px; transition:var(--tr);
}
.cat-card:hover .cat-ico{ transform:scale(1.08) rotate(4deg); }
.cat-ico svg{ width:27px; height:27px; }
.ci-1{ background:var(--sage); color:var(--ink); }
.ci-2{ background:var(--honey-lt); color:var(--honey); filter:brightness(.8); }
.ci-3{ background:#F4DEDA; color:var(--cardinal); }
.ci-4{ background:#DCE4EF; color:#385278; }
.cat-name{ font-family:var(--f-display); font-size:1.18rem; font-weight:600; margin-bottom:8px; }
.cat-desc{ font-size:.85rem; color:var(--muted); margin-bottom:16px; }
.cat-sub-list{ display:flex; flex-wrap:wrap; gap:6px; }
.cat-sub-list span{ font-family:var(--f-label); font-size:.66rem; letter-spacing:.02em; background:var(--paper-deep); color:var(--ink-soft); padding:5px 10px; border-radius:100px; }
.cat-more{ display:inline-flex; align-items:center; gap:6px; font-size:.82rem; font-weight:700; color:var(--cardinal); margin-top:18px; }
.cat-more svg{ width:13px; height:13px; transition:var(--tr); }
.cat-card:hover .cat-more svg{ transform:translateX(4px); }

/* Divider — capsule motif */
.capsule-divider{ display:flex; align-items:center; justify-content:center; gap:10px; padding:10px 0; }
.capsule-divider span{ width:34px; height:14px; border-radius:100px; border:1.5px solid var(--sage-deep); position:relative; overflow:hidden; }
.capsule-divider span::before{ content:''; position:absolute; left:0; top:0; bottom:0; width:50%; background:var(--cardinal); }
.capsule-divider i{ width:5px; height:5px; border-radius:50%; background:var(--sage-deep); }

/* =========================================================
   ABOUT / SPLIT SECTIONS
   ========================================================= */
.about-split{ display:grid; grid-template-columns:.9fr 1.1fr; gap:64px; align-items:center; }
.about-media{ position:relative; }
.about-media img{ border-radius:var(--r-xl); box-shadow:var(--sh-md); width:100%; height:420px; object-fit:cover; }
.about-badge{
  position:absolute; bottom:-24px; left:-24px; background:var(--white); border-radius:var(--r);
  box-shadow:var(--sh-lg); padding:18px 22px; display:flex; align-items:center; gap:14px;
}
.about-badge-n{ font-family:var(--f-display); font-size:1.7rem; font-weight:700; color:var(--cardinal); }
.about-badge-l{ font-size:.72rem; color:var(--muted); line-height:1.3; max-width:100px; }
.about-list{ display:grid; gap:16px; margin-top:26px; }
.about-item{ display:flex; gap:14px; align-items:flex-start; }
.about-item-ico{ width:34px; height:34px; border-radius:9px; background:var(--sage); color:var(--ink); display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.about-item-ico svg{ width:16px; height:16px; }
.about-item h4{ font-size:.98rem; margin-bottom:3px; }
.about-item p{ font-size:.84rem; color:var(--muted); }

/* =========================================================
   WHY CHOOSE US
   ========================================================= */
.why-section{ background:var(--ink); color:var(--white); }
.why-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:2px; margin-top:52px; background:rgba(255,255,255,.08); border-radius:var(--r-lg); overflow:hidden; }
.why-card{ background:var(--ink); padding:34px 24px; transition:var(--tr); }
.why-card:hover{ background:#1E3D34; }
.why-ico{ width:44px; height:44px; border-radius:12px; background:rgba(206,154,52,.14); color:var(--honey); display:flex; align-items:center; justify-content:center; margin-bottom:18px; }
.why-ico svg{ width:20px; height:20px; }
.why-card h4{ color:var(--white); font-size:1rem; margin-bottom:6px; }
.why-card p{ font-size:.8rem; color:rgba(255,255,255,.55); }
.why-section .eyebrow{ color:var(--honey); }
.why-section .eyebrow::before{ background:var(--honey); }
.why-section .section-title{ color:var(--white); }
.why-section .sub{ color:rgba(255,255,255,.6); }

/* =========================================================
   FEATURED PRODUCTS
   ========================================================= */
.prod-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:22px; margin-top:48px; }
.prod-grid.lv{ grid-template-columns:1fr; }
.prod-card{
  background:var(--white); border-radius:var(--r-lg); overflow:hidden; border:1px solid var(--sage-line);
  transition:var(--tr); display:flex; flex-direction:column;
}
.prod-grid.lv .prod-card{ flex-direction:row; }
.prod-card:hover{ box-shadow:var(--sh-lg); transform:translateY(-6px); border-color:transparent; }
.prod-img{
  position:relative; aspect-ratio:1/1; background:var(--sage); display:flex; align-items:center; justify-content:center;
  color:var(--ink-soft); padding:20px;
}
.prod-grid.lv .prod-img{ width:180px; flex-shrink:0; aspect-ratio:auto; }
.prod-img svg{ width:64px; height:64px; }
.prod-badge{ position:absolute; top:12px; left:12px; font-family:var(--f-label); font-size:.62rem; letter-spacing:.05em; text-transform:uppercase; font-weight:700; padding:5px 10px; border-radius:100px; color:var(--white); }
.bg-new{ background:var(--cardinal); }
.bg-pop{ background:var(--honey); color:var(--ink); }
.prod-body{ padding:20px 20px 22px; display:flex; flex-direction:column; flex:1; }
.prod-cat{ font-family:var(--f-label); font-size:.66rem; letter-spacing:.08em; text-transform:uppercase; color:var(--cardinal); font-weight:700; margin-bottom:8px; }
.prod-name{ font-family:var(--f-display); font-size:1.02rem; font-weight:600; margin-bottom:8px; line-height:1.3; }
.prod-desc{ font-size:.82rem; color:var(--muted); line-height:1.5; margin-bottom:16px; flex:1; }
.prod-btn-row{ display:flex; gap:10px; }
.prod-view, .prod-enq{
  flex:1; display:flex; align-items:center; justify-content:center; gap:7px;
  font-size:.78rem; font-weight:700; padding:11px 10px; border-radius:100px; transition:var(--tr);
}
.prod-view svg, .prod-enq svg{ width:13px; height:13px; }
.prod-view{ border:1.5px solid var(--sage-line); color:var(--ink); }
.prod-view:hover{ border-color:var(--ink); }
.prod-enq{ background:var(--ink); color:var(--white); }
.prod-enq:hover{ background:var(--cardinal); }

/* =========================================================
   WELLNESS (photo section)
   ========================================================= */
.well-section{ position:relative; }
.well-photo-wrap{ display:grid; grid-template-columns:.85fr 1.15fr; gap:56px; align-items:center; }
.well-photo{ position:relative; border-radius:var(--r-xl); overflow:hidden; box-shadow:var(--sh-md); height:460px; }
.well-photo img{ width:100%; height:100%; object-fit:cover; }
.well-photo::after{ content:''; position:absolute; inset:0; background:linear-gradient(0deg, rgba(22,48,42,.5), transparent 45%); }
.well-tag-float{ position:absolute; bottom:20px; left:20px; background:var(--white); border-radius:100px; padding:9px 16px; font-family:var(--f-label); font-size:.7rem; font-weight:700; color:var(--ink); display:flex; align-items:center; gap:8px; box-shadow:var(--sh-md); }
.well-tag-float i{ width:7px; height:7px; border-radius:50%; background:var(--cardinal); display:block; }
.well-points{ display:grid; gap:20px; margin-top:28px; }
.well-point{ display:flex; gap:16px; padding:20px; background:var(--white); border-radius:var(--r); border:1px solid var(--sage-line); transition:var(--tr); }
.well-point:hover{ border-color:var(--sage-deep); box-shadow:var(--sh-sm); }
.well-num{ font-family:var(--f-display); font-size:1.3rem; color:var(--sage-deep); font-weight:700; flex-shrink:0; }
.well-point h4{ font-size:.98rem; margin-bottom:5px; }
.well-point p{ font-size:.83rem; color:var(--muted); }

/* =========================================================
   TESTIMONIALS
   ========================================================= */
.testi-section{ background:var(--sage); }
.testi-wrap{ overflow:hidden; margin-top:48px; }
.testi-track{ display:grid; grid-auto-flow:column; grid-auto-columns:minmax(320px,1fr); gap:22px; overflow-x:auto; scroll-snap-type:x mandatory; padding-bottom:8px; scrollbar-width:none; }
.testi-track::-webkit-scrollbar{ display:none; }
.testi-card{ scroll-snap-align:start; }
.testi-inner{ background:var(--white); border-radius:var(--r-lg); padding:28px 26px; height:100%; box-shadow:var(--sh-sm); }
.tq{ width:26px; height:26px; color:var(--sage-deep); margin-bottom:14px; }
.tst{ display:flex; gap:3px; margin-bottom:14px; }
.tst svg{ width:14px; height:14px; color:var(--honey); }
.tt{ font-size:.9rem; color:var(--ink-soft); line-height:1.6; margin-bottom:20px; min-height:96px; }
.ta{ display:flex; align-items:center; gap:12px; padding-top:16px; border-top:1px solid var(--paper-deep); }
.tav{ width:42px; height:42px; border-radius:50%; background:var(--ink); color:var(--white); display:flex; align-items:center; justify-content:center; font-family:var(--f-display); font-weight:700; font-size:.9rem; flex-shrink:0; }
.tn{ font-size:.88rem; font-weight:700; }
.tl{ font-size:.76rem; color:var(--muted); }
.testi-nav{ display:flex; gap:10px; justify-content:center; margin-top:28px; }
.testi-btn{ width:42px; height:42px; border-radius:50%; background:var(--white); display:flex; align-items:center; justify-content:center; transition:var(--tr); box-shadow:var(--sh-sm); }
.testi-btn:hover{ background:var(--ink); color:var(--white); }
.testi-btn svg{ width:16px; height:16px; }

/* =========================================================
   CTA
   ========================================================= */
.cta-section{ background:var(--ink); text-align:center; padding:96px 24px; position:relative; overflow:hidden; }
.cta-section::before{ content:''; position:absolute; inset:0; background:radial-gradient(circle at 50% 0%, rgba(206,154,52,.16), transparent 55%); }
.cta-title{ position:relative; font-size:clamp(1.8rem,3.6vw,2.9rem); color:var(--white); max-width:680px; margin:0 auto 16px; }
.cta-title span{ color:var(--honey); font-style:italic; }
.cta-sub{ position:relative; color:rgba(255,255,255,.6); max-width:520px; margin:0 auto 36px; }
.cta-btns{ position:relative; display:flex; gap:14px; justify-content:center; flex-wrap:wrap; }

/* =========================================================
   FOOTER
   ========================================================= */
.site-ftr{ background:#0F241D; color:rgba(255,255,255,.62); }
.ftr-top{ display:grid; grid-template-columns:1.3fr 1fr 1fr 1.2fr; gap:44px; padding:72px 0 44px; }
.ftr-logo{ display:flex; align-items:center; gap:11px; margin-bottom:18px; }
.ftr-logo-icon{ width:38px; height:38px; border-radius:10px; background:var(--honey); display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.ftr-logo-txt{ font-family:var(--f-display); font-weight:700; font-size:1.15rem; color:var(--white); }
.ftr-desc{ font-size:.85rem; line-height:1.6; max-width:280px; margin-bottom:22px; }
.ftr-social{ display:flex; gap:10px; }
.ftr-social a{ width:36px; height:36px; border-radius:50%; background:rgba(255,255,255,.06); display:flex; align-items:center; justify-content:center; transition:var(--tr); }
.ftr-social a:hover{ background:var(--cardinal); }
.ftr-social svg{ width:15px; height:15px; }
.ftr-h{ font-family:var(--f-label); font-size:.72rem; letter-spacing:.1em; text-transform:uppercase; color:var(--honey); margin-bottom:20px; font-weight:700; }
.ftr-links{ display:grid; gap:12px; }
.ftr-links a{ font-size:.86rem; transition:var(--tr); }
.ftr-links a:hover{ color:var(--white); }
.ftr-contact{ display:grid; gap:14px; }
.ftr-contact-item{ display:flex; gap:10px; font-size:.85rem; align-items:flex-start; }
.ftr-contact-item svg{ width:16px; height:16px; color:var(--honey); flex-shrink:0; margin-top:2px; }
.ftr-newsletter{ margin-top:18px; }
.ftr-nl-form{ display:flex; margin-top:10px; border-radius:100px; overflow:hidden; background:rgba(255,255,255,.06); }
.ftr-nl-form input{ flex:1; background:none; border:none; padding:12px 16px; color:var(--white); font-size:.82rem; }
.ftr-nl-form input:focus{ outline:none; }
.ftr-nl-form button{ background:var(--honey); color:var(--ink); font-weight:700; font-size:.78rem; padding:0 18px; }
.ftr-bottom{ border-top:1px solid rgba(255,255,255,.08); padding:22px 0; display:flex; justify-content:space-between; align-items:center; font-size:.78rem; flex-wrap:wrap; gap:10px; }
.ftr-bottom a{ transition:var(--tr); }
.ftr-bottom a:hover{ color:var(--white); }
.ftr-credit a{ color:var(--honey); font-weight:700; }

/* =========================================================
   PAGE HERO (inner pages)
   ========================================================= */
.page-hero{ background:var(--ink); position:relative; overflow:hidden; padding:56px 0; }
.page-hero::before{ content:''; position:absolute; inset:0; background:radial-gradient(circle at 90% 10%, rgba(206,154,52,.15), transparent 50%); }
.ph-inner{ position:relative; display:flex; justify-content:space-between; align-items:flex-end; gap:24px; flex-wrap:wrap; }
.ph-title{ color:var(--white); font-size:clamp(1.8rem,3.4vw,2.6rem); margin-bottom:10px; }
.ph-sub{ color:rgba(255,255,255,.6); max-width:480px; }
.ph-btns{ display:flex; gap:12px; flex-wrap:wrap; }
.breadcrumb{ display:flex; align-items:center; gap:7px; margin-top:14px; font-size:.79rem; color:rgba(255,255,255,.5); }
.breadcrumb a{ color:var(--honey); }
.breadcrumb svg{ width:12px; height:12px; }

/* =========================================================
   PRODUCTS PAGE
   ========================================================= */
.products-page{ padding:56px 0 96px; }
.prod-toolbar{ display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:14px; padding-bottom:28px; border-bottom:1px solid var(--sage-line); margin-bottom:8px; }
.pt-info{ font-size:.86rem; color:var(--muted); }
.pt-right{ display:flex; align-items:center; gap:14px; }
.sort-sel{ border:1.5px solid var(--sage-line); border-radius:100px; padding:9px 16px; font-size:.82rem; background:var(--white); color:var(--ink); cursor:pointer; }
.view-tog{ display:flex; gap:4px; background:var(--sage); padding:4px; border-radius:100px; }
.vbtn{ width:34px; height:34px; border-radius:50%; display:flex; align-items:center; justify-content:center; color:var(--ink-soft); transition:var(--tr); }
.vbtn svg{ width:15px; height:15px; }
.vbtn.on{ background:var(--white); color:var(--ink); box-shadow:var(--sh-sm); }
.filter-chips{ display:flex; flex-wrap:wrap; gap:10px; margin:24px 0 8px; }
.f-chip{ font-family:var(--f-label); font-size:.72rem; letter-spacing:.03em; padding:9px 17px; border-radius:100px; background:var(--white); border:1.5px solid var(--sage-line); color:var(--ink-soft); font-weight:600; transition:var(--tr); }
.f-chip:hover{ border-color:var(--ink); }
.f-chip.on{ background:var(--ink); color:var(--white); border-color:var(--ink); }
.pagination{ display:flex; gap:8px; justify-content:center; margin-top:56px; }
.pg-btn{ width:40px; height:40px; border-radius:10px; border:1.5px solid var(--sage-line); display:flex; align-items:center; justify-content:center; font-size:.85rem; font-weight:700; color:var(--ink-soft); transition:var(--tr); }
.pg-btn svg{ width:13px; height:13px; }
.pg-btn:hover{ border-color:var(--ink); }
.pg-btn.on{ background:var(--ink); color:var(--white); border-color:var(--ink); }

/* =========================================================
   PRODUCT DETAIL PAGE
   ========================================================= */
.pd-section{ padding:56px 0 96px; }
.pd-grid{ display:grid; grid-template-columns:.9fr 1.1fr; gap:56px; }
.pd-gallery-main{ background:var(--sage); border-radius:var(--r-xl); aspect-ratio:1/1; display:flex; align-items:center; justify-content:center; color:var(--ink-soft); margin-bottom:16px; }
.pd-gallery-main svg{ width:120px; height:120px; }
.pd-thumbs{ display:flex; gap:12px; }
.pd-thumb{ width:76px; height:76px; border-radius:var(--r); background:var(--sage); border:2px solid transparent; display:flex; align-items:center; justify-content:center; color:var(--ink-soft); transition:var(--tr); cursor:pointer; }
.pd-thumb svg{ width:32px; height:32px; }
.pd-thumb.on{ border-color:var(--cardinal); }
.pd-cat{ font-family:var(--f-label); font-size:.72rem; letter-spacing:.1em; text-transform:uppercase; color:var(--cardinal); font-weight:700; margin-bottom:12px; }
.pd-title{ font-size:clamp(1.6rem,2.8vw,2.2rem); margin-bottom:14px; }
.pd-meta{ display:flex; gap:20px; margin-bottom:22px; flex-wrap:wrap; }
.pd-meta-item{ display:flex; align-items:center; gap:7px; font-size:.82rem; color:var(--muted); }
.pd-meta-item svg{ width:15px; height:15px; color:var(--cardinal); }
.pd-desc{ color:var(--ink-soft); font-size:.94rem; line-height:1.7; margin-bottom:26px; }
.pd-tabs{ display:flex; gap:4px; background:var(--sage); padding:4px; border-radius:100px; margin-bottom:20px; width:fit-content; }
.pd-tab{ font-size:.8rem; font-weight:700; padding:10px 20px; border-radius:100px; color:var(--ink-soft); transition:var(--tr); }
.pd-tab.on{ background:var(--white); color:var(--ink); box-shadow:var(--sh-sm); }
.pd-tab-panel{ display:none; font-size:.88rem; color:var(--ink-soft); line-height:1.7; margin-bottom:28px; }
.pd-tab-panel.on{ display:block; }
.pd-tab-panel ul{ display:grid; gap:8px; margin-top:8px; }
.pd-tab-panel li{ display:flex; gap:8px; align-items:flex-start; }
.pd-tab-panel li::before{ content:'✓'; color:var(--cardinal); font-weight:700; flex-shrink:0; }
.pd-btn-row{ display:flex; gap:14px; flex-wrap:wrap; }
.pd-related{ margin-top:88px; }

/* =========================================================
   PRESCRIPTION PAGE
   ========================================================= */
.rx-section{ padding:56px 0 96px; }
.rx-grid{ display:grid; grid-template-columns:1fr 1fr; gap:56px; }
.rx-steps{ display:grid; gap:22px; margin-top:8px; }
.rx-step{ display:flex; gap:16px; }
.rx-step-n{ width:38px; height:38px; border-radius:50%; background:var(--sage); color:var(--ink); font-family:var(--f-display); font-weight:700; display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.rx-step h4{ font-size:.96rem; margin-bottom:4px; }
.rx-step p{ font-size:.83rem; color:var(--muted); }
.rx-formats{ display:flex; gap:10px; margin-top:22px; flex-wrap:wrap; }
.rx-format-chip{ display:flex; align-items:center; gap:7px; background:var(--white); border:1.5px solid var(--sage-line); border-radius:100px; padding:8px 16px; font-size:.78rem; font-weight:700; color:var(--ink-soft); }
.rx-format-chip svg{ width:13px; height:13px; color:var(--cardinal); }
.rx-upload-card{ background:var(--white); border-radius:var(--r-xl); padding:36px; box-shadow:var(--sh-md); border:1px solid var(--sage-line); }
.rx-dropzone{
  border:2px dashed var(--sage-deep); border-radius:var(--r-lg); padding:44px 20px; text-align:center;
  transition:var(--tr); cursor:pointer; margin-bottom:22px;
}
.rx-dropzone:hover, .rx-dropzone.drag{ border-color:var(--cardinal); background:var(--paper-deep); }
.rx-dropzone svg{ width:38px; height:38px; color:var(--sage-deep); margin:0 auto 14px; }
.rx-dropzone h4{ font-size:.94rem; margin-bottom:5px; }
.rx-dropzone p{ font-size:.78rem; color:var(--muted); }
.rx-privacy{ display:flex; gap:10px; align-items:flex-start; background:var(--sage); border-radius:var(--r); padding:16px 18px; font-size:.78rem; color:var(--ink-soft); margin-top:18px; line-height:1.5; }
.rx-privacy svg{ width:17px; height:17px; color:var(--ink); flex-shrink:0; margin-top:1px; }

/* =========================================================
   FORMS (shared: contact / enquiry modal)
   ========================================================= */
.frow{ display:grid; grid-template-columns:1fr 1fr; gap:16px; }
.fg{ display:grid; gap:7px; margin-bottom:16px; }
.flabel{ font-size:.78rem; font-weight:700; color:var(--ink-soft); }
.fctrl{ border:1.5px solid var(--sage-line); border-radius:var(--r); padding:13px 16px; font-size:.88rem; color:var(--ink); background:var(--white); transition:var(--tr); width:100%; }
.fctrl:focus{ outline:none; border-color:var(--cardinal); }
.fctrl::placeholder{ color:#9AAA9F; }

/* Enquiry Modal */
.modal-wrap{ position:fixed; inset:0; background:rgba(15,36,29,.55); backdrop-filter:blur(3px); z-index:2000; display:flex; align-items:center; justify-content:center; opacity:0; visibility:hidden; transition:var(--tr); padding:20px; }
.modal-wrap.open{ opacity:1; visibility:visible; }
.modal-box{ background:var(--white); border-radius:var(--r-xl); padding:32px 30px; width:100%; max-width:440px; position:relative; box-shadow:var(--sh-lg); transform:translateY(14px); transition:var(--tr); max-height:90vh; overflow-y:auto; }
.modal-wrap.open .modal-box{ transform:translateY(0); }
.modal-x{ position:absolute; top:18px; right:18px; width:32px; height:32px; border-radius:50%; background:var(--paper-deep); display:flex; align-items:center; justify-content:center; color:var(--ink); }
.modal-x svg{ width:14px; height:14px; }
.modal-cat{ font-family:var(--f-label); font-size:.68rem; letter-spacing:.1em; text-transform:uppercase; color:var(--cardinal); font-weight:700; margin-bottom:6px; }
.modal-title{ font-family:var(--f-display); font-size:1.2rem; font-weight:600; margin-bottom:14px; padding-right:30px; }
.modal-div{ height:1px; background:var(--sage-line); margin-bottom:18px; }
.modal-sub-btn{ width:100%; display:flex; align-items:center; justify-content:center; gap:9px; background:var(--cardinal); color:var(--white); padding:15px; border-radius:100px; font-weight:700; font-size:.88rem; transition:var(--tr); }
.modal-sub-btn svg{ width:15px; height:15px; }
.modal-sub-btn:hover{ background:var(--cardinal-dk); }
.modal-note{ display:flex; gap:8px; align-items:flex-start; font-size:.74rem; color:var(--muted); margin-top:14px; }
.modal-note svg{ width:15px; height:15px; flex-shrink:0; margin-top:1px; }

/* =========================================================
   CONTACT PAGE
   ========================================================= */
.contact-grid{ display:grid; grid-template-columns:.85fr 1.15fr; gap:32px; }
.ci-card{ background:var(--ink); color:var(--white); border-radius:var(--r-xl); padding:36px; }
.ci-title{ color:var(--white); font-size:1.4rem; margin-bottom:10px; }
.ci-sub{ font-size:.86rem; color:rgba(255,255,255,.6); margin-bottom:28px; }
.ci-item{ display:flex; gap:16px; align-items:flex-start; margin-bottom:24px; }
.ci-icon{ width:42px; height:42px; border-radius:12px; background:rgba(255,255,255,.08); color:var(--honey); display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.ci-icon svg{ width:18px; height:18px; }
.ci-lbl{ font-family:var(--f-label); font-size:.68rem; letter-spacing:.08em; text-transform:uppercase; color:rgba(255,255,255,.45); margin-bottom:5px; }
.ci-val{ font-size:.92rem; line-height:1.5; }
.ci-val a{ color:var(--white); }
.cf-card{ background:var(--white); border-radius:var(--r-xl); padding:36px; border:1px solid var(--sage-line); }
.cf-title{ font-size:1.25rem; margin-bottom:22px; }
.cf-sub-btn{ display:flex; align-items:center; justify-content:center; gap:9px; background:var(--ink); color:var(--white); padding:15px; border-radius:100px; font-weight:700; font-size:.88rem; width:100%; transition:var(--tr); }
.cf-sub-btn:hover{ background:var(--cardinal); }
.cf-sub-btn svg{ width:15px; height:15px; }
.map-box{ border-radius:var(--r-xl); overflow:hidden; box-shadow:var(--sh-md); height:360px; background:var(--sage); display:flex; align-items:center; justify-content:center; border:1.5px solid var(--sage-line); }

/* =========================================================
   ABOUT PAGE EXTRAS
   ========================================================= */
.stat-band{ background:var(--sage); border-radius:var(--r-xl); padding:44px; display:grid; grid-template-columns:repeat(4,1fr); text-align:center; }
.stat-item .stat-n{ font-family:var(--f-display); font-size:2.1rem; font-weight:700; color:var(--cardinal); }
.stat-item .stat-l{ font-size:.78rem; color:var(--ink-soft); font-family:var(--f-label); letter-spacing:.04em; text-transform:uppercase; margin-top:4px; }
.value-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:22px; margin-top:44px; }
.value-card{ background:var(--white); border:1px solid var(--sage-line); border-radius:var(--r-lg); padding:30px; transition:var(--tr); }
.value-card:hover{ box-shadow:var(--sh-md); transform:translateY(-6px); }
.value-ico{ width:48px; height:48px; border-radius:14px; background:var(--sage); color:var(--ink); display:flex; align-items:center; justify-content:center; margin-bottom:18px; }
.value-ico svg{ width:22px; height:22px; }
.timeline{ display:grid; gap:0; margin-top:44px; }
.timeline-item{ display:grid; grid-template-columns:110px 1fr; gap:24px; padding:26px 0; border-bottom:1px solid var(--sage-line); }
.timeline-item:last-child{ border-bottom:none; }
.timeline-y{ font-family:var(--f-display); font-weight:700; font-size:1.15rem; color:var(--cardinal); }
.timeline-item h4{ font-size:1rem; margin-bottom:5px; }
.timeline-item p{ font-size:.85rem; color:var(--muted); }

/* Scroll to top */
.scroll-top{
  position:fixed; bottom:26px; right:26px; width:48px; height:48px; border-radius:50%;
  background:var(--ink); color:var(--white); display:flex; align-items:center; justify-content:center;
  box-shadow:var(--sh-md); opacity:0; visibility:hidden; transform:translateY(10px); transition:var(--tr); z-index:500;
}
.scroll-top.show{ opacity:1; visibility:visible; transform:translateY(0); }
.scroll-top svg{ width:18px; height:18px; }
.wa-float{
  position:fixed; bottom:26px; left:26px; width:54px; height:54px; border-radius:50%; background:var(--wa);
  color:var(--white); display:flex; align-items:center; justify-content:center; box-shadow:var(--sh-md); z-index:500; transition:var(--tr);
}
.wa-float:hover{ transform:scale(1.08); }
.wa-float svg{ width:26px; height:26px; }
