:root {
  --forest: #16382b;
  --forest-deep: #0e2a20;
  --forest-mid: #1f5a43;
  --leaf: #2d7a57;
  --gold: #c9a227;
  --gold-soft: #e8d48b;
  --cream: #f7f3ea;
  --paper: #fffdf8;
  --wood: #c4a574;
  --ink: #14261c;
  --muted: #5c6f64;
  --line: #e4ddd0;
  --danger: #b42318;
  --radius: 16px;
  --shadow: 0 12px 40px rgba(20, 38, 28, 0.08);
  --header: 6.5rem;
  --font: "Raleway", system-ui, sans-serif;
  --serif: "Lora", Georgia, serif;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
h1, h2, h3, h4 { font-family: var(--serif); line-height: 1.2; margin: 0 0 .6rem; }
.container { width: min(1180px, calc(100% - 32px)); margin-inline: auto; }
.skip { position: absolute; left: -999px; }
.skip:focus { left: 12px; top: 12px; background: #fff; padding: 8px; z-index: 99; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
.icon-btn svg, .nav svg, .topbar svg, .search button svg, .footer svg, .wa-float svg, .announce svg { width: 18px; height: 18px; }
.icon-btn { position: relative; width: 44px; height: 44px; border: 0; background: transparent; border-radius: 50%; display: grid; place-items: center; cursor: pointer; color: var(--forest); }
.icon-btn:hover { background: var(--cream); }
.icon-btn i {
  position: absolute; top: 4px; right: 4px; min-width: 16px; height: 16px; padding: 0 4px;
  background: var(--forest); color: #fff; border-radius: 99px; font-size: 10px; font-style: normal;
  display: grid; place-items: center;
}
.icon-btn i.is-zero { display: none; }

/* Announcement */
.announce {
  background: var(--forest-deep);
  color: var(--gold-soft);
  overflow: hidden;
  min-height: 34px;
  padding: 8px 0;
  display: flex;
  align-items: center;
  font-size: 12px;
  letter-spacing: .06em;
  text-transform: uppercase;
  font-weight: 600;
}
.announce-track {
  display: flex;
  gap: 48px;
  white-space: nowrap;
  animation: marquee 32s linear infinite;
  width: max-content;
}
.announce-track span { display: inline-flex; align-items: center; gap: 8px; }
.announce:hover .announce-track { animation-play-state: paused; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Topbar */
.topbar { background: var(--forest); color: #e8f0ea; font-size: 13px; }
.topbar-inner { display: flex; justify-content: space-between; align-items: center; min-height: 40px; padding: 8px 0; gap: 12px; }
.topbar-left, .topbar-right { display: flex; align-items: center; gap: 12px; }
.topbar a { display: inline-flex; align-items: center; gap: 6px; }
.topbar .dot { opacity: .5; }
.topbar-right a { opacity: .9; }
.topbar-right a:hover { color: var(--gold-soft); }

/* Header */
.header {
  position: sticky; top: 0; z-index: 40;
  background: rgba(255,253,248,.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 72px;
  padding: 10px 0;
}
.brand {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  line-height: 0;
  align-self: center;
}
.brand img { width: 72px; height: 72px; object-fit: contain; display: block; }
.footer .brand img { width: 96px; height: 96px; }
.brand strong { display: block; font-family: var(--serif); font-size: 1.15rem; color: var(--forest); font-weight: 700; }
.brand em { font-style: normal; color: var(--leaf); font-size: .78em; letter-spacing: .12em; text-transform: uppercase; }
.brand small { display: block; color: var(--muted); font-size: 11px; letter-spacing: .04em; }
.nav { display: none; align-items: center; justify-content: center; flex-wrap: nowrap; gap: 0; margin: 0; }
.nav > a, .nav-drop > a {
  padding: 6px 8px; font-size: 13px; font-weight: 600; color: var(--forest);
  border-radius: 8px; display: inline-flex; align-items: center; gap: 2px; white-space: nowrap;
}
.nav > a:hover, .nav-drop > a:hover, .nav .is-active { color: var(--leaf); background: var(--cream); }
.nav-drop { position: relative; }
.nav-drop svg { width: 14px; height: 14px; }
.nav-menu {
  position: absolute; top: 100%; left: 0; min-width: 180px; background: #fff;
  border: 1px solid var(--line); border-radius: 12px; padding: 8px; display: none;
  box-shadow: var(--shadow);
}
.nav-drop:hover .nav-menu, .nav-drop:focus-within .nav-menu { display: grid; }
.nav-menu a { padding: 8px 10px; border-radius: 8px; font-size: 13px; }
.nav-menu a:hover { background: var(--cream); }
.header-tools { display: flex; align-items: center; justify-content: flex-end; gap: 4px; margin: 0; flex-shrink: 0; align-self: center; height: 72px; }
.search { display: none; position: relative; }
.search input {
  width: 170px; height: 40px; border: 1px solid var(--line); border-radius: 999px;
  padding: 0 40px 0 14px; background: #fff;
}
.search button { position: absolute; right: 4px; top: 2px; }
.menu-btn { display: grid; }

@media (min-width: 1180px) {
  .header-inner {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    min-height: 84px;
    padding: 8px 0;
  }
  .brand img { width: 76px; height: 76px; }
  .header-tools { height: 76px; }
  .nav { display: flex; }
  .search { display: block; }
  .menu-btn { display: none; }
}
@media (min-width: 1360px) {
  .search input { width: 210px; }
  .nav > a, .nav-drop > a { padding: 8px 10px; font-size: 13.5px; }
}
@media (max-width: 1479px) {
  .nav-wide { display: none !important; }
}

/* Drawer */
.drawer-backdrop { position: fixed; inset: 0; background: rgba(14,42,32,.4); opacity: 0; pointer-events: none; z-index: 50; transition: .25s; }
.drawer {
  position: fixed; top: 0; right: 0; width: min(320px, 92vw); height: 100%;
  background: #fff; z-index: 60; transform: translateX(100%); transition: .3s ease;
  padding: 16px; overflow: auto; display: grid; align-content: start; gap: 4px;
}
.drawer a { padding: 12px; border-radius: 10px; font-weight: 600; }
.drawer a:hover { background: var(--cream); }
.drawer-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; }
body.menu-open .drawer { transform: none; }
body.menu-open .drawer-backdrop { opacity: 1; pointer-events: auto; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 44px; padding: 0 20px; border-radius: 999px; border: 1.5px solid transparent;
  font-weight: 700; cursor: pointer; transition: .2s;
}
.btn-primary { background: var(--forest); color: #fff; }
.btn-primary:hover { background: var(--forest-mid); transform: translateY(-1px); }
.btn-ghost { background: #fff; color: var(--forest); border-color: var(--forest); }
.btn-ghost:hover { background: var(--cream); }
.btn-gold { background: var(--gold); color: var(--forest-deep); }
.btn-block { width: 100%; }

/* Hero — exact approved banner */
.hero {
  position: relative;
  background: #dce6d4;
  overflow: hidden;
}
.hero-banner {
  position: relative;
  width: 100%;
  line-height: 0;
}
.hero-banner img {
  width: 100%;
  height: auto;
  display: block;
}
.hero-hit {
  position: absolute;
  z-index: 2;
  display: block;
  font-size: 0;
  color: transparent;
  overflow: hidden;
  border-radius: 8px;
}
.hero-hit-shop {
  left: 4.2%;
  top: 69.7%;
  width: 10.8%;
  height: 5.8%;
}
.hero-hit-explore {
  left: 16.2%;
  top: 69.7%;
  width: 15.8%;
  height: 5.8%;
}
.hero-mobile-cta {
  display: none;
  padding: 14px 16px 18px;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  background: #f7f3ea;
}

/* Sections */
.section { padding: 72px 0; }
.section-head { text-align: center; margin-bottom: 36px; }
.eyebrow { color: var(--leaf); letter-spacing: .18em; text-transform: uppercase; font-size: 12px; font-weight: 700; margin: 0 0 8px; }
.section-head h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); }
.section-cream { background: var(--cream); }
.section-sage { background: #eef4ee; }

.cat-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px;
  max-width: 920px; margin: 0 auto;
}
@media (min-width: 800px) { .cat-grid { grid-template-columns: repeat(4, 1fr); } }
.cat-card { text-align: center; }
.cat-card img {
  width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: 50%;
  border: 6px solid #fff; box-shadow: var(--shadow); transition: .35s;
}
.cat-card:hover img { transform: scale(1.05) rotate(-2deg); }
.cat-card h3 { font-size: 14px; margin: 12px 0 0; font-family: var(--font); }
.cat-card span { color: var(--leaf); font-size: 12px; font-weight: 700; }

.prod-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
@media (min-width: 560px) { .prod-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .prod-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1100px) { .prod-grid.five { grid-template-columns: repeat(5, 1fr); } }
.pcard {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; display: flex; flex-direction: column; box-shadow: 0 8px 24px rgba(20,38,28,.04);
  transition: .3s;
}
.pcard:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.pcard-img { position: relative; background: var(--cream); }
.pcard-img img { width: 100%; aspect-ratio: 1; object-fit: cover; }
.ribbon {
  position: absolute; top: 12px; left: 0; background: var(--gold); color: var(--forest-deep);
  font-size: 11px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase;
  padding: 5px 10px; border-radius: 0 999px 999px 0;
}
.pcard-body { padding: 14px 16px 18px; display: grid; gap: 8px; }
.pcard-body h3 { font-size: 1rem; }
.pcard-body h3 a:hover { color: var(--leaf); }
.stars { display: inline-flex; gap: 2px; vertical-align: middle; }
.stars svg { width: 14px; height: 14px; }
.rating small { color: var(--muted); }
.price { display: flex; gap: 8px; align-items: baseline; }
.price s { color: var(--muted); font-size: 13px; }

.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (min-width: 800px) { .why-grid { grid-template-columns: repeat(3, 1fr); } }
.why {
  background: #fff; border-radius: var(--radius); padding: 22px; text-align: center;
  border: 1px solid var(--line);
}
.why .ic {
  width: 56px; height: 56px; margin: 0 auto 12px; border-radius: 50%;
  display: grid; place-items: center; background: var(--cream); color: var(--forest);
}
.why .ic svg { width: 26px; height: 26px; }
.why h3 { font-size: 1.05rem; }

.banners { display: grid; gap: 16px; }
@media (min-width: 800px) { .banners { grid-template-columns: repeat(3, 1fr); } }
.banner {
  position: relative; border-radius: 20px; overflow: hidden; min-height: 220px;
  color: #fff; display: grid; align-items: end;
}
.banner img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.banner::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent, rgba(10,28,20,.75)); }
.banner div { position: relative; z-index: 1; padding: 22px; }
.banner h3 { font-size: 1.4rem; }

.reviews { display: grid; gap: 16px; }
@media (min-width: 800px) { .reviews { grid-template-columns: repeat(3, 1fr); } }
.review {
  background: #fff; border-radius: var(--radius); padding: 22px; border: 1px solid var(--line);
}
.review-top { display: flex; gap: 12px; align-items: center; margin-bottom: 10px; }
.review-top img { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; }
.review p { color: var(--muted); }

.trustbar {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
  background: var(--forest); color: #fff; border-radius: 20px; padding: 22px;
}
@media (min-width: 800px) { .trustbar { grid-template-columns: repeat(4, 1fr); } }
.trustbar div { display: flex; gap: 10px; align-items: center; }
.trustbar svg { width: 28px; height: 28px; color: var(--gold-soft); }

.about-grid { display: grid; gap: 32px; align-items: center; }
@media (min-width: 860px) { .about-grid { grid-template-columns: 1.1fr .9fr; } }
.stats { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.stat { background: #fff; border-radius: 16px; padding: 18px; text-align: center; border: 1px solid var(--line); }
.stat strong { display: block; font-family: var(--serif); font-size: 1.6rem; color: var(--forest); }

.team-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (min-width: 800px) { .team-grid { grid-template-columns: repeat(4, 1fr); } }
.team-grid.team-grid-five { grid-template-columns: 1fr 1fr; }
@media (min-width: 720px) { .team-grid.team-grid-five { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1100px) { .team-grid.team-grid-five { grid-template-columns: repeat(5, 1fr); } }
.team { text-align: center; }
.team img { width: 100%; aspect-ratio: 3/4; object-fit: cover; border-radius: 20px; margin-bottom: 12px; }
.team h3 { font-size: 1.1rem; margin-bottom: 2px; }
.team span { color: var(--leaf); font-size: 13px; font-weight: 700; display: block; margin-bottom: 4px; }
.team p { color: var(--muted); font-size: 13px; margin-top: 8px; }

.values-bar {
  display: grid; grid-template-columns: 1fr 1fr; gap: 18px;
  background: var(--forest); color: #fff; border-radius: 20px; padding: 28px 22px;
}
@media (min-width: 800px) { .values-bar { grid-template-columns: repeat(4, 1fr); } }
.values-bar .value { text-align: center; }
.values-bar .ic {
  width: 52px; height: 52px; margin: 0 auto 10px; border-radius: 50%;
  display: grid; place-items: center; background: rgba(255,255,255,.12); color: var(--gold-soft);
}
.values-bar .ic svg { width: 24px; height: 24px; }
.values-bar h3 { color: #fff; font-size: 1.05rem; margin-bottom: 6px; }
.values-bar p { color: rgba(255,255,255,.82); font-size: 13px; }

.page-hero {
  background: linear-gradient(120deg, var(--forest-deep), var(--forest-mid));
  color: #fff; padding: 48px 0 40px;
}
.page-hero h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
.crumbs { font-size: 13px; opacity: .8; }
.crumbs span { margin: 0 6px; }

.split { display: grid; gap: 28px; }
@media (min-width: 860px) { .split { grid-template-columns: 1fr 1fr; align-items: center; } }
.prose { max-width: 70ch; }
.prose p, .prose li { color: #33463c; }
.beliefs { display: grid; gap: 12px; }
.belief { display: flex; gap: 12px; background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 14px 16px; }
.belief svg { width: 22px; height: 22px; color: var(--leaf); flex: 0 0 auto; margin-top: 2px; }

.export-grid, .cert-grid, .svc-grid { display: grid; gap: 16px; }
@media (min-width: 700px) { .export-grid, .cert-grid, .svc-grid { grid-template-columns: repeat(3, 1fr); } }
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 22px;
}
.card h3 { margin-bottom: 8px; }
.cert-card { text-align: center; }
.badge-big {
  width: 88px; height: 88px; margin: 0 auto 12px; border-radius: 50%;
  display: grid; place-items: center; background: var(--cream); color: var(--forest);
  font-weight: 800; letter-spacing: .04em; border: 2px solid var(--gold);
}
.soon { opacity: .55; }

.form { display: grid; gap: 12px; }
.form label { font-weight: 600; font-size: 14px; }
.form input, .form select, .form textarea {
  width: 100%; border: 1px solid var(--line); border-radius: 12px; padding: 12px 14px; background: #fff;
}
.form textarea { min-height: 120px; resize: vertical; }
.form .row { display: grid; gap: 12px; }
@media (min-width: 640px) { .form .row { grid-template-columns: 1fr 1fr; } }
.alert { padding: 12px 14px; border-radius: 12px; background: #e8f6ec; color: var(--forest); }
.alert.err { background: #fde8e6; color: var(--danger); }

.map { border: 0; width: 100%; height: 320px; border-radius: 16px; }

.blog-grid { display: grid; gap: 18px; }
@media (min-width: 800px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
.bcard { background: #fff; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); }
.bcard img { width: 100%; height: 200px; object-fit: cover; }
.bcard div { padding: 16px; }
.article { max-width: 760px; margin: 0 auto; }
.article img.cover { width: 100%; border-radius: 20px; max-height: 380px; object-fit: cover; margin-bottom: 20px; }

.cart-layout, .checkout-layout, .account-layout { display: grid; gap: 24px; }
@media (min-width: 900px) {
  .cart-layout { grid-template-columns: 1.5fr .9fr; }
  .checkout-layout { grid-template-columns: 1.1fr .9fr; }
}
.line { display: grid; grid-template-columns: 72px 1fr auto; gap: 12px; padding: 12px 0; border-bottom: 1px solid var(--line); align-items: center; }
.line img { width: 72px; height: 72px; object-fit: cover; border-radius: 12px; }
.qty { display: inline-flex; border: 1px solid var(--line); border-radius: 999px; overflow: hidden; }
.qty button { width: 36px; height: 36px; border: 0; background: #fff; cursor: pointer; }
.qty span { min-width: 28px; text-align: center; line-height: 36px; }
.summary { background: var(--cream); border-radius: 20px; padding: 22px; position: sticky; top: 96px; }
.summary .row { display: flex; justify-content: space-between; margin: 8px 0; }
.pay-methods { display: grid; gap: 10px; }
.pay-opt {
  display: flex; gap: 12px; align-items: center; border: 1.5px solid var(--line);
  border-radius: 14px; padding: 12px; cursor: pointer; background: #fff;
}
.pay-opt.is-on { border-color: var(--forest); background: #f3faf5; }
.pay-pane { display: none; margin-top: 10px; }
.pay-pane.is-on { display: block; }
.banks { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.banks label { border: 1px solid var(--line); border-radius: 10px; padding: 10px; cursor: pointer; }

.filters { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 22px; }
.chip { padding: 8px 14px; border-radius: 999px; border: 1px solid var(--line); background: #fff; font-weight: 600; font-size: 13px; }
.chip.is-on, .chip:hover { background: var(--forest); color: #fff; border-color: var(--forest); }

.pdp { display: grid; gap: 28px; }
@media (min-width: 860px) { .pdp { grid-template-columns: 1fr 1fr; } }
.pdp-img { border-radius: 24px; overflow: hidden; background: var(--cream); }
.pdp-img img { width: 100%; aspect-ratio: 1; object-fit: cover; }

.timeline { display: grid; gap: 10px; }
.tl { display: flex; gap: 12px; align-items: center; }
.tl i { width: 12px; height: 12px; border-radius: 50%; background: var(--line); display: block; }
.tl.done i { background: var(--leaf); }

.footer { background: var(--forest-deep); color: #d7e6dc; padding: 56px 0 0; margin-top: 40px; }
.footer-grid { display: grid; gap: 28px; }
@media (min-width: 800px) { .footer-grid { grid-template-columns: 1.3fr .8fr .8fr .9fr 1.1fr; } }
.footer h4 { color: #fff; font-family: var(--font); letter-spacing: .06em; text-transform: uppercase; font-size: 13px; }
.footer a { display: block; padding: 4px 0; opacity: .9; }
.footer a:hover { color: var(--gold-soft); }
.brand-light strong { color: #fff; }
.social { display: flex; gap: 8px; margin-top: 12px; }
.social a { width: 40px; height: 40px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.2); border-radius: 50%; }
.news label { display: block; color: #fff; margin: 12px 0 6px; }
.news div { display: flex; gap: 6px; }
.news input { flex: 1; border: 0; border-radius: 999px; padding: 10px 14px; }
.news button { background: var(--gold-soft); color: var(--forest-deep); border: 0; border-radius: 999px; padding: 10px 14px; font-weight: 700; cursor: pointer; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); margin-top: 32px; padding: 18px 0 24px; }
.footer-bottom-inner { display: grid; gap: 12px; justify-items: center; text-align: center; }
.certs-row, .pay-row { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; }
.cert-pill, .pay-row span {
  border: 1px solid rgba(255,255,255,.25); padding: 4px 10px; border-radius: 999px; font-size: 11px; font-weight: 700; letter-spacing: .06em;
}
.cert-pill.muted { opacity: .6; }

.wa-float {
  position: fixed; right: 18px; bottom: 18px; z-index: 30;
  background: #25d366; color: #fff; display: flex; align-items: center; gap: 8px;
  padding: 12px 16px; border-radius: 999px; box-shadow: 0 10px 24px rgba(37,211,102,.4);
  font-weight: 700;
}
.wa-float svg { width: 22px; height: 22px; }
@media (max-width: 640px) { .wa-float span { display: none; } .wa-float { width: 52px; height: 52px; padding: 0; justify-content: center; } }

.toast {
  position: fixed; left: 50%; bottom: 24px; transform: translate(-50%, 20px);
  background: var(--forest); color: #fff; padding: 12px 18px; border-radius: 999px;
  opacity: 0; pointer-events: none; transition: .25s; z-index: 80; font-weight: 600;
}
.toast.show { opacity: 1; transform: translate(-50%, 0); }

.reveal { opacity: 0; transform: translateY(16px); transition: opacity .45s ease, transform .45s ease; }
.reveal.in { opacity: 1; transform: none; }

.empty { text-align: center; padding: 48px 16px; }
.login-box { max-width: 420px; margin: 0 auto; background: #fff; padding: 28px; border-radius: 20px; border: 1px solid var(--line); }

@media (max-width: 900px) {
  .hero-hit { display: none; }
  .hero-mobile-cta { display: flex; }
}
@media (max-width: 760px) {
  .topbar-left span:not(.dot):nth-of-type(2), .topbar .dot { display: none; }
  .section { padding: 48px 0; }
  .header-inner { min-height: 64px; padding: 8px 0; }
  .brand img { width: 56px; height: 56px; }
  .header-tools { height: 56px; gap: 0; }
  .icon-btn { width: 40px; height: 40px; }
}

@media (prefers-reduced-motion: reduce) {
  .announce-track, .reveal, .pcard, .cat-card img { animation: none !important; transition: none !important; transform: none !important; opacity: 1 !important; }
}
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }
.cursor-pointer, button, a, .chip, .pay-opt { cursor: pointer; }
