/* ============================================================
   VITANNIA HEALTH — Global Stylesheet
   Premium gold + navy theme
   ============================================================ */

:root {
  --gold: #c9a227;
  --gold-light: #e3c766;
  --gold-dark: #a8851a;
  --navy: #0e1b33;
  --navy-2: #16264a;
  --ink: #1c2536;
  --muted: #64708a;
  --line: #e7e9ef;
  --bg: #ffffff;
  --bg-soft: #f7f8fb;
  --bg-cream: #faf7ef;
  --success: #1f9d63;
  --star: #f5a623;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow-sm: 0 1px 2px rgba(14, 27, 51, 0.06), 0 4px 14px rgba(14, 27, 51, 0.05);
  --shadow-md: 0 10px 30px rgba(14, 27, 51, 0.10);
  --shadow-lg: 0 24px 60px rgba(14, 27, 51, 0.16);
  --serif: "Playfair Display", Georgia, "Times New Roman", serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --maxw: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 700; line-height: 1.15; color: var(--navy); margin: 0 0 .5em; }
h1 { font-size: clamp(2.1rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); }
h3 { font-size: 1.25rem; }
p { margin: 0 0 1rem; }
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.section { padding: 72px 0; }
.section-sm { padding: 48px 0; }
.center { text-align: center; }
.muted { color: var(--muted); }
.eyebrow {
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .78rem;
  font-weight: 700;
  color: var(--gold-dark);
  margin-bottom: .6rem;
}
.section-head { max-width: 640px; margin: 0 auto 44px; }
.section-head.left { margin-left: 0; text-align: left; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font-family: var(--sans); font-weight: 600; font-size: .95rem;
  padding: .85rem 1.6rem; border-radius: 999px; border: 1.5px solid transparent;
  cursor: pointer; transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-gold { background: linear-gradient(135deg, var(--gold-light), var(--gold)); color: #2a2205; box-shadow: 0 8px 20px rgba(201,162,39,.35); }
.btn-gold:hover { box-shadow: 0 12px 26px rgba(201,162,39,.5); transform: translateY(-1px); }
.btn-navy { background: var(--navy); color: #fff; }
.btn-navy:hover { background: var(--navy-2); }
.btn-outline { background: transparent; border-color: var(--navy); color: var(--navy); }
.btn-outline:hover { background: var(--navy); color: #fff; }
.btn-ghost { background: #fff; border-color: var(--line); color: var(--ink); }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold-dark); }
.btn-block { width: 100%; }
.btn-lg { padding: 1rem 2rem; font-size: 1.02rem; }

/* ---------- Announcement bar ---------- */
.announce {
  background: var(--navy); color: #fff; text-align: center;
  font-size: .82rem; letter-spacing: .04em; padding: 9px 12px;
}
.announce strong { color: var(--gold-light); }

/* ---------- Header ---------- */
.header {
  position: sticky; top: 0; z-index: 60; background: rgba(255,255,255,.92);
  backdrop-filter: saturate(160%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; gap: 20px; height: 76px; }
.brand { display: flex; align-items: center; gap: 12px; flex-shrink: 0; min-width: 0; }
.brand-logo { height: 64px; width: auto; max-width: 220px; object-fit: contain; }
.brand-fallback { display: flex; align-items: center; gap: 10px; }
.brand-crown {
  width: 48px; height: 48px; border-radius: 10px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
  color: #2a2205; display: grid; place-items: center; font-family: var(--serif); font-weight: 800; font-size: 1.3rem;
  box-shadow: var(--shadow-sm);
}
.brand-name { font-family: var(--serif); font-weight: 800; font-size: 1.5rem; letter-spacing: .12em; color: var(--navy); }
.brand-name span { color: var(--gold-dark); }
.brand-sub { display:block; font-family: var(--sans); font-size:.58rem; letter-spacing:.34em; color: var(--muted); text-transform: uppercase; margin-top:-2px; }

.nav { display: flex; align-items: center; gap: 26px; margin-left: 14px; }
.nav a { font-size: .92rem; font-weight: 500; color: var(--ink); position: relative; padding: 6px 0; }
.nav a:hover, .nav a.active { color: var(--gold-dark); }
.nav a.active::after { content:""; position:absolute; left:0; right:0; bottom:0; height:2px; background: var(--gold); border-radius: 2px; }

.header-search { flex: 1; max-width: 420px; margin: 0 auto; position: relative; }
.header-search input {
  width: 100%; padding: .7rem 1rem .7rem 2.6rem; border: 1.5px solid var(--line);
  border-radius: 999px; font-size: .9rem; background: var(--bg-soft); transition: border .2s, background .2s;
  font-family: var(--sans);
}
.header-search input:focus { outline: none; border-color: var(--gold); background: #fff; }
.header-search .search-ico { position: absolute; left: 14px; top: 50%; transform: translateY(-50%); color: var(--muted); }
.search-suggest {
  position: absolute; top: 110%; left: 0; right: 0; background: #fff; border: 1px solid var(--line);
  border-radius: 12px; box-shadow: var(--shadow-md); overflow: hidden; display: none; z-index: 70;
}
.search-suggest.open { display: block; }
.search-suggest a { display: flex; gap: 12px; align-items: center; padding: 10px 14px; }
.search-suggest a:hover { background: var(--bg-soft); }
.search-suggest img, .search-suggest .mini-ph { width: 40px; height: 40px; border-radius: 8px; object-fit: contain; background: var(--bg-soft); }
.search-suggest .s-name { font-size: .88rem; font-weight: 600; }
.search-suggest .s-price { margin-left: auto; color: var(--gold-dark); font-weight: 700; font-size: .88rem; }

.header-actions { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.icon-btn {
  width: 44px; height: 44px; display: grid; place-items: center; border-radius: 12px;
  background: transparent; border: none; cursor: pointer; color: var(--navy); position: relative;
}
.icon-btn:hover { background: var(--bg-soft); }
.cart-count {
  position: absolute; top: 4px; right: 4px; min-width: 18px; height: 18px; padding: 0 4px;
  background: var(--gold); color: #2a2205; border-radius: 999px; font-size: .68rem; font-weight: 800;
  display: grid; place-items: center;
}
.menu-toggle { display: none; }

/* ---------- Hero ---------- */
.hero { position: relative; background: radial-gradient(1200px 600px at 80% -10%, #17284d 0%, var(--navy) 55%); color: #fff; overflow: hidden; }
.hero::after {
  content:""; position:absolute; inset:0; opacity:.5;
  background:
    radial-gradient(600px 300px at 10% 110%, rgba(201,162,39,.22), transparent 60%),
    radial-gradient(500px 260px at 95% 10%, rgba(201,162,39,.15), transparent 60%);
  pointer-events:none;
}
.hero-inner { display: grid; grid-template-columns: 1.05fr .95fr; gap: 40px; align-items: center; padding: 84px 0; position: relative; z-index: 1; }
.hero h1 { color: #fff; }
.hero h1 em { font-style: italic; color: var(--gold-light); }
.hero p.lead { font-size: 1.12rem; color: #cdd6e6; max-width: 520px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 26px; }
.hero-badges { display: flex; gap: 22px; margin-top: 36px; flex-wrap: wrap; }
.hero-badge { display: flex; align-items: center; gap: 10px; color: #dfe6f2; font-size: .86rem; }
.hero-badge svg { color: var(--gold-light); flex-shrink: 0; }
.hero-visual { position: relative; display: grid; place-items: center; min-height: 380px; }
.hero-card {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.14); border-radius: 24px;
  padding: 26px; width: 100%; max-width: 420px; backdrop-filter: blur(6px); box-shadow: var(--shadow-lg);
}
.hero-card .bottle { margin: 0 auto 8px; }
.hero-card .hc-row { display:flex; align-items:center; justify-content:space-between; gap: 12px; }
.hero-card .hc-name { font-family: var(--serif); font-size: 1.3rem; color:#fff; }
.hero-card .hc-price { color: var(--gold-light); font-weight: 800; font-size: 1.3rem; }
.hero-card .stars { margin: 4px 0 14px; }

/* ---------- Trust strip ---------- */
.trust-strip { background: var(--bg-cream); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; padding: 30px 0; }
.trust-item { display: flex; align-items: center; gap: 14px; }
.trust-badge {
  width: 52px; height: 52px; border-radius: 50%; border: 2px solid var(--gold);
  display: grid; place-items: center; color: var(--gold-dark); flex-shrink: 0; background:#fff;
}
.trust-item h4 { margin: 0; font-family: var(--sans); font-size: .92rem; color: var(--navy); }
.trust-item p { margin: 0; font-size: .78rem; color: var(--muted); }

/* ---------- Categories ---------- */
.cat-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; }
.cat-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 22px 14px;
  text-align: center; transition: transform .18s, box-shadow .2s, border-color .2s;
}
.cat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--gold); }
.cat-ico { width: 54px; height: 54px; margin: 0 auto 12px; border-radius: 50%; background: var(--bg-cream); display: grid; place-items: center; color: var(--gold-dark); }
.cat-card h4 { font-family: var(--sans); font-size: .9rem; margin: 0; color: var(--navy); }

/* ---------- Product grid & cards ---------- */
.products-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.products-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.pcard {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
  display: flex; flex-direction: column; transition: transform .18s, box-shadow .2s, border-color .2s; position: relative;
}
.pcard:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: rgba(201,162,39,.5); }
.pcard-media { position: relative; aspect-ratio: 1/1; background: var(--bg-soft); overflow: hidden; }
.pcard-media-link { position: absolute; inset: 0; display: grid; place-items: center; }
.pcard-media img { width: 100%; height: 100%; object-fit: contain; padding: 14px; transition: transform .3s; }
.pcard-media .ph-holder { width: 100%; height: 100%; }
.pcard:hover .pcard-media img { transform: scale(1.04); }
.pcard-badges { position: absolute; top: 12px; left: 12px; display: flex; flex-direction: column; gap: 6px; z-index: 2; }
.chip {
  font-size: .68rem; font-weight: 800; letter-spacing: .04em; text-transform: uppercase;
  padding: 4px 9px; border-radius: 999px; background: var(--navy); color: #fff;
}
.chip.save { background: var(--gold); color: #2a2205; }
.chip.best { background: #b8412f; color:#fff; }
.pcard-quick {
  position: absolute; top: 12px; right: 12px; z-index: 2; width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,.95); border: 1px solid var(--line); display: grid; place-items: center;
  color: var(--navy); cursor: pointer; opacity: 0; transform: translateY(-6px); transition: .2s;
}
.pcard:hover .pcard-quick { opacity: 1; transform: none; }
.pcard-quick:hover { color: var(--gold-dark); border-color: var(--gold); }
.pcard-body { padding: 16px 18px 20px; display: flex; flex-direction: column; flex: 1; }
.pcard-cat { font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); font-weight: 700; }
.pcard-name { font-family: var(--serif); font-size: 1.12rem; margin: 4px 0 2px; color: var(--navy); }
.pcard-name a:hover { color: var(--gold-dark); }
.pcard-tag { font-size: .82rem; color: var(--muted); margin: 0 0 10px; min-height: 2.5em; }
.stars { display: inline-flex; align-items: center; gap: 3px; color: var(--star); font-size: .95rem; }
.stars .rev-count { color: var(--muted); font-size: .78rem; margin-left: 6px; }
.pcard-foot { margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: 10px; padding-top: 14px; }
.price { display: flex; align-items: baseline; gap: 8px; }
.price .now { font-size: 1.28rem; font-weight: 800; color: var(--navy); font-family: var(--sans); }
.price .was { font-size: .9rem; color: var(--muted); text-decoration: line-through; }
.add-btn {
  border: none; cursor: pointer; background: var(--navy); color: #fff; border-radius: 10px;
  width: 44px; height: 44px; display: grid; place-items: center; transition: background .2s, transform .15s;
  flex-shrink: 0;
}
.add-btn:hover { background: var(--gold); color: #2a2205; }
.add-btn.wide { width: auto; padding: 0 16px; gap: 8px; font-weight: 700; font-size: .9rem; }

/* CSS-drawn bottle placeholder (shown until real photo is added) */
.bottle { width: 150px; height: 210px; position: relative; filter: drop-shadow(0 12px 18px rgba(14,27,51,.18)); }
.bottle .cap { position:absolute; top:0; left:50%; transform:translateX(-50%); width:64px; height:28px; border-radius:8px 8px 4px 4px; background: linear-gradient(180deg, var(--gold-light), var(--gold-dark)); }
.bottle .neck { position:absolute; top:26px; left:50%; transform:translateX(-50%); width:56px; height:12px; background: var(--gold-dark); opacity:.6; }
.bottle .body { position:absolute; top:34px; left:50%; transform:translateX(-50%); width:118px; height:176px; border-radius:16px; background: linear-gradient(180deg,#ffffff, #f1f3f8); border:1px solid #e3e7ef; overflow:hidden; }
.bottle .label { position:absolute; top:24px; left:8px; right:8px; bottom:14px; border-radius:10px; background:#fff; box-shadow: inset 0 0 0 1px rgba(0,0,0,.04); display:flex; flex-direction:column; align-items:center; justify-content:center; text-align:center; padding:8px; }
.bottle .label .b-brand { font-family:var(--serif); font-weight:800; font-size:.6rem; letter-spacing:.14em; color: var(--gold-dark); }
.bottle .label .b-strip { height:5px; width:70%; border-radius:3px; margin:6px 0; }
.bottle .label .b-name { font-family:var(--serif); font-weight:700; font-size:.82rem; color: var(--navy); line-height:1.1; }
.bottle .label .b-dose { font-size:.62rem; color: var(--muted); margin-top:3px; }
.mini-bottle { width: 44px; height: 62px; }
.mini-bottle .body { top: 12px; width: 40px; height: 50px; }
.mini-bottle .cap { width: 22px; height: 10px; }
.mini-bottle .neck { display:none; }
.mini-bottle .label { top: 8px; left: 3px; right: 3px; bottom: 5px; padding: 2px; }
.mini-bottle .label .b-brand, .mini-bottle .label .b-dose { display:none; }
.mini-bottle .label .b-name { font-size: .5rem; }

/* ---------- Feature band ---------- */
.feature-band { background: var(--navy); color: #fff; }
.feature-band h2 { color: #fff; }
.feature-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 30px; }
.feature { display: flex; gap: 16px; }
.feature .f-ico { width: 52px; height: 52px; border-radius: 14px; background: rgba(201,162,39,.15); color: var(--gold-light); display: grid; place-items: center; flex-shrink: 0; }
.feature h4 { color: #fff; font-family: var(--sans); margin: 0 0 4px; }
.feature p { color: #b9c3d6; font-size: .9rem; margin: 0; }

/* ---------- Split / promo ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.promo-card { background: var(--bg-cream); border-radius: 24px; padding: 44px; border: 1px solid #efe6cf; }

/* ---------- Reviews ---------- */
.reviews-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.review-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow-sm); }
.review-card .stars { margin-bottom: 10px; }
.review-card p { font-size: .95rem; color: var(--ink); }
.review-meta { display: flex; align-items: center; gap: 12px; margin-top: 14px; }
.avatar { width: 42px; height: 42px; border-radius: 50%; background: linear-gradient(135deg,var(--gold-light),var(--gold-dark)); color:#2a2205; display: grid; place-items: center; font-weight: 800; }
.review-meta .r-name { font-weight: 700; font-size: .9rem; }
.review-meta .r-loc { font-size: .78rem; color: var(--muted); }

/* ---------- Newsletter ---------- */
.newsletter { background: linear-gradient(135deg, var(--navy), var(--navy-2)); color: #fff; border-radius: 24px; padding: 54px; text-align: center; position: relative; overflow: hidden; }
.newsletter::before { content:""; position:absolute; width:300px; height:300px; border-radius:50%; background: radial-gradient(circle, rgba(201,162,39,.25), transparent 70%); top:-100px; right:-60px; }
.newsletter h2 { color: #fff; position: relative; }
.newsletter p { color: #c8d1e2; position: relative; }
.news-form { display: flex; gap: 10px; max-width: 460px; margin: 22px auto 0; position: relative; }
.news-form input { flex: 1; padding: .95rem 1.2rem; border-radius: 999px; border: none; font-size: .95rem; font-family: var(--sans); }
.news-form input:focus { outline: 2px solid var(--gold); }

/* ---------- Footer ---------- */
.footer { background: #0a1428; color: #aeb9cd; padding: 60px 0 26px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; }
.footer h5 { color: #fff; font-family: var(--sans); font-size: .8rem; letter-spacing: .14em; text-transform: uppercase; margin: 0 0 16px; }
.footer a { display: block; padding: 5px 0; font-size: .9rem; color: #aeb9cd; }
.footer a:hover { color: var(--gold-light); }
.footer .f-brand .brand-name { color:#fff; }
.footer .f-desc { font-size: .9rem; max-width: 320px; margin-top: 14px; }
.footer-social { display: flex; gap: 10px; margin-top: 18px; }
.footer-social a { width: 38px; height: 38px; border-radius: 10px; background: rgba(255,255,255,.06); display: grid; place-items: center; color:#fff; padding:0; }
.footer-social a:hover { background: var(--gold); color: #2a2205; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); margin-top: 40px; padding-top: 22px; display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; font-size: .82rem; }
.pay-icons { display: flex; gap: 8px; align-items: center; }
.pay-icons span { background: #fff; color: var(--navy); font-weight: 800; font-size: .62rem; padding: 4px 8px; border-radius: 5px; letter-spacing: .02em; }

/* ---------- Cart drawer ---------- */
.overlay { position: fixed; inset: 0; background: rgba(10,20,40,.5); opacity: 0; visibility: hidden; transition: .25s; z-index: 90; }
.overlay.open { opacity: 1; visibility: visible; }
.drawer {
  position: fixed; top: 0; right: 0; height: 100%; width: 420px; max-width: 92vw; background: #fff; z-index: 100;
  transform: translateX(100%); transition: transform .3s cubic-bezier(.4,0,.2,1); display: flex; flex-direction: column; box-shadow: var(--shadow-lg);
}
.drawer.open { transform: none; }
.drawer-head { padding: 22px 24px; border-bottom: 1px solid var(--line); display: flex; align-items: center; justify-content: space-between; }
.drawer-head h3 { margin: 0; }
.drawer-body { flex: 1; overflow-y: auto; padding: 12px 24px; }
.drawer-foot { padding: 20px 24px; border-top: 1px solid var(--line); background: var(--bg-soft); }
.cart-line { display: flex; gap: 14px; padding: 16px 0; border-bottom: 1px solid var(--line); }
.cart-line .cl-media { width: 66px; height: 66px; border-radius: 10px; background: var(--bg-soft); flex-shrink: 0; display: grid; place-items: center; overflow: hidden; }
.cart-line .cl-media img { width:100%; height:100%; object-fit: contain; padding: 6px; }
.cart-line .cl-info { flex: 1; min-width: 0; }
.cart-line .cl-name { font-weight: 700; font-size: .92rem; }
.cart-line .cl-price { color: var(--gold-dark); font-weight: 700; font-size: .9rem; }
.qty { display: inline-flex; align-items: center; border: 1px solid var(--line); border-radius: 8px; overflow: hidden; margin-top: 8px; }
.qty button { width: 30px; height: 30px; border: none; background: #fff; cursor: pointer; font-size: 1rem; color: var(--navy); }
.qty button:hover { background: var(--bg-soft); }
.qty span { width: 34px; text-align: center; font-weight: 700; font-size: .88rem; }
.cl-remove { background: none; border: none; color: var(--muted); cursor: pointer; font-size: .78rem; margin-top: 6px; padding: 0; }
.cl-remove:hover { color: #b8412f; }
.cart-empty { text-align: center; padding: 60px 20px; color: var(--muted); }
.cart-total-row { display: flex; justify-content: space-between; margin-bottom: 8px; font-size: .92rem; }
.cart-total-row.grand { font-size: 1.15rem; font-weight: 800; color: var(--navy); margin: 12px 0 16px; }
.free-ship-note { font-size: .8rem; color: var(--success); margin-bottom: 14px; text-align: center; }

/* ---------- Toast ---------- */
.toast {
  position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%) translateY(20px);
  background: var(--navy); color: #fff; padding: 14px 22px; border-radius: 12px; box-shadow: var(--shadow-lg);
  z-index: 120; display: flex; align-items: center; gap: 10px; opacity: 0; visibility: hidden; transition: .25s; font-size: .9rem;
}
.toast.show { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.toast svg { color: var(--gold-light); }

/* ---------- Page header ---------- */
.page-hero { background: var(--bg-cream); border-bottom: 1px solid var(--line); padding: 48px 0; }
.breadcrumb { font-size: .82rem; color: var(--muted); margin-bottom: 8px; }
.breadcrumb a:hover { color: var(--gold-dark); }

/* ---------- Shop layout ---------- */
.shop-layout { display: grid; grid-template-columns: 240px 1fr; gap: 34px; align-items: start; }
.filters { position: sticky; top: 96px; }
.filter-group { border-bottom: 1px solid var(--line); padding: 16px 0; }
.filter-group h4 { font-family: var(--sans); font-size: .82rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin: 0 0 12px; }
.filter-opt { display: flex; align-items: center; gap: 10px; padding: 5px 0; cursor: pointer; font-size: .92rem; }
.filter-opt input { accent-color: var(--gold-dark); width: 16px; height: 16px; }
.shop-toolbar { display: flex; align-items: center; justify-content: space-between; gap: 14px; margin-bottom: 22px; flex-wrap: wrap; }
.shop-toolbar select { padding: .6rem 1rem; border-radius: 10px; border: 1.5px solid var(--line); font-family: var(--sans); font-size: .9rem; background:#fff; cursor:pointer; }
.result-count { font-size: .9rem; color: var(--muted); }

/* ---------- Product detail ---------- */
.pdp { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.pdp-media { background: var(--bg-soft); border: 1px solid var(--line); border-radius: 22px; aspect-ratio: 1/1; display: grid; place-items: center; position: sticky; top: 96px; overflow: hidden; }
.pdp-media img { width: 100%; height: 100%; object-fit: contain; padding: 30px; }
.pdp-media .bottle { width: 220px; height: 300px; }
.pdp h1 { margin-top: 4px; }
.pdp .price { margin: 16px 0; }
.pdp .price .now { font-size: 2rem; }
.pdp-tags { display: flex; gap: 8px; flex-wrap: wrap; margin: 14px 0 20px; }
.pdp-tags .tag { background: var(--bg-cream); border: 1px solid #efe6cf; color: var(--gold-dark); font-size: .78rem; font-weight: 700; padding: 6px 12px; border-radius: 999px; }
.pdp-buy { display: flex; gap: 12px; align-items: center; margin: 22px 0; }
.pdp-buy .qty { margin: 0; height: 52px; }
.pdp-buy .qty button { height: 50px; width: 44px; font-size: 1.2rem; }
.pdp-buy .qty span { font-size: 1rem; }
.subscribe-box { border: 1.5px solid var(--line); border-radius: 14px; padding: 16px; margin: 8px 0 20px; }
.subscribe-box label { display: flex; gap: 12px; align-items: flex-start; cursor: pointer; }
.subscribe-box input { accent-color: var(--gold-dark); margin-top: 4px; width:18px; height:18px; }
.subscribe-box .sb-title { font-weight: 700; }
.subscribe-box .sb-title .save-badge { background: var(--success); color:#fff; font-size:.68rem; padding:2px 8px; border-radius:999px; margin-left:8px; }
.pdp-assure { display: flex; flex-direction: column; gap: 10px; margin-top: 18px; }
.pdp-assure div { display: flex; gap: 10px; align-items: center; font-size: .9rem; color: var(--ink); }
.pdp-assure svg { color: var(--success); flex-shrink: 0; }

.pdp-tabs { margin-top: 60px; }
.tab-btns { display: flex; gap: 6px; border-bottom: 1px solid var(--line); flex-wrap: wrap; }
.tab-btn { background: none; border: none; padding: 14px 20px; font-family: var(--sans); font-size: .95rem; font-weight: 600; color: var(--muted); cursor: pointer; border-bottom: 2px solid transparent; margin-bottom: -1px; }
.tab-btn.active { color: var(--navy); border-color: var(--gold); }
.tab-panel { display: none; padding: 28px 0; max-width: 820px; }
.tab-panel.active { display: block; }
.facts-table { width: 100%; border-collapse: collapse; margin: 10px 0; }
.facts-table th, .facts-table td { text-align: left; padding: 12px 14px; border-bottom: 1px solid var(--line); font-size: .92rem; }
.facts-table thead th { background: var(--navy); color: #fff; font-family: var(--sans); font-weight: 600; }
.facts-table tbody tr:nth-child(even) { background: var(--bg-soft); }
.benefit-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.benefit-list li { display: flex; gap: 12px; align-items: flex-start; }
.benefit-list svg { color: var(--gold-dark); flex-shrink: 0; margin-top: 3px; }

/* ---------- About page ---------- */
.stat-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; text-align:center; }
.stat .num { font-family: var(--serif); font-size: 2.6rem; color: var(--gold-dark); font-weight: 800; }
.stat .lbl { color: var(--muted); font-size: .9rem; }
.value-grid { display:grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.value-card { background:#fff; border:1px solid var(--line); border-radius: var(--radius); padding: 28px; }
.value-card .v-ico { width:52px; height:52px; border-radius:14px; background: var(--bg-cream); color: var(--gold-dark); display:grid; place-items:center; margin-bottom:14px; }

/* ---------- Contact ---------- */
.contact-grid { display:grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.form-row { margin-bottom: 16px; }
.form-row label { display:block; font-size:.85rem; font-weight:600; margin-bottom:6px; color: var(--navy); }
.form-row input, .form-row textarea, .form-row select {
  width:100%; padding:.8rem 1rem; border:1.5px solid var(--line); border-radius:10px; font-family:var(--sans); font-size:.92rem;
}
.form-row input:focus, .form-row textarea:focus, .form-row select:focus { outline:none; border-color: var(--gold); }
.contact-info-card { background: var(--bg-cream); border:1px solid #efe6cf; border-radius: var(--radius); padding: 30px; }
.contact-info-card .ci-row { display:flex; gap:14px; align-items:flex-start; margin-bottom:20px; }
.contact-info-card .ci-ico { width:42px; height:42px; border-radius:10px; background:#fff; color: var(--gold-dark); display:grid; place-items:center; flex-shrink:0; box-shadow: var(--shadow-sm); }

/* ---------- Misc ---------- */
.divider { height:1px; background: var(--line); border:0; margin: 0; }
.hidden { display: none !important; }
.fade-in { animation: fadeInUp .5s ease both; }
@keyframes fadeInUp { from { opacity:0; transform: translateY(16px);} to {opacity:1; transform:none;} }

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .products-grid, .products-grid.cols-3 { grid-template-columns: repeat(3,1fr); }
  .cat-grid { grid-template-columns: repeat(3,1fr); }
  .feature-grid, .reviews-grid, .value-grid { grid-template-columns: 1fr; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { order: -1; min-height: auto; }
  .pdp { grid-template-columns: 1fr; }
  .pdp-media { position: static; max-width: 460px; margin: 0 auto; }
  .split, .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stat-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 820px) {
  .header-search { display: none; }
  .nav { display: none; position: absolute; top: 76px; left: 0; right: 0; background: #fff; flex-direction: column; align-items: stretch; padding: 12px 24px 20px; border-bottom: 1px solid var(--line); box-shadow: var(--shadow-md); }
  .nav.open { display: flex; }
  .nav a { padding: 12px 0; border-bottom: 1px solid var(--line); }
  .menu-toggle { display: grid; }
  .shop-layout { grid-template-columns: 1fr; }
  .filters { position: static; }
  .trust-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 560px) {
  .products-grid, .products-grid.cols-3, .cat-grid { grid-template-columns: repeat(2,1fr); }
  .section { padding: 48px 0; }
  .newsletter, .promo-card { padding: 30px 22px; }
  .news-form { flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr; }
  .stat-grid { grid-template-columns: repeat(2,1fr); }
  .trust-grid { grid-template-columns: 1fr; }
}
