@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Poppins:wght@500;600;700;800&display=swap');

:root {
  --forest: #1f3b2c;
  --forest-deep: #173321;
  --forest-soft: #315440;
  --sage: #7c9473;
  --sage-wash: #e7eee4;
  --paper: #fafaf8;
  --white: #ffffff;
  --ink: #171817;
  --muted: #626862;
  --faint: #8a908a;
  --line: #e5e7e2;
  --sale: #e64a3b;
  --amber: #f5a623;
  --success: #2e7d32;
  --shadow: 0 2px 10px rgba(22, 39, 26, .07);
  --shadow-lg: 0 18px 38px rgba(22, 39, 26, .12);
  --radius: 10px;
  --radius-sm: 8px;
  --container: min(1400px, calc(100% - 96px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, Arial, sans-serif;
  font-size: 14px;
  line-height: 1.5;
}
body.drawer-open { overflow: hidden; }
img { display: block; width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
button:focus-visible, a:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible, summary:focus-visible {
  outline: 3px solid rgba(124, 148, 115, .45);
  outline-offset: 3px;
}
.container { width: var(--container); margin-inline: auto; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}
.icon { width: 21px; height: 21px; display: inline-block; flex: 0 0 auto; }
.icon--sm { width: 17px; height: 17px; }
.icon--lg { width: 28px; height: 28px; }

.promo-bar {
  background: linear-gradient(100deg, var(--forest-deep), var(--forest));
  color: white;
  min-height: 34px;
  display: flex;
  align-items: center;
  font-size: 11px;
  font-weight: 600;
}
.promo-bar .container, .promo-message, .promo-links { display: flex; align-items: center; }
.promo-bar .container { position: relative; justify-content: center; gap: 24px; }
.promo-message { gap: 9px; letter-spacing: 0; }
.promo-links { position: absolute; right: 0; gap: 14px; font-weight: 500; }
.promo-links a + a { border-left: 1px solid rgba(255,255,255,.38); padding-left: 14px; }

.site-header { background: var(--white); border-bottom: 1px solid var(--line); position: relative; z-index: 30; }
.masthead {
  min-height: 105px;
  display: grid;
  grid-template-columns: 280px minmax(320px, 1fr) 310px;
  align-items: center;
  gap: 36px;
}
.brand { display: inline-flex; align-items: center; gap: 11px; width: max-content; }
.brand-mark {
  width: 54px; height: 54px; display: grid; place-items: center;
  color: var(--forest); border: 2px solid var(--forest); border-radius: 12px 12px 9px 9px;
  transform: rotate(-1deg);
}
.brand-mark .icon { width: 38px; height: 38px; }
.brand-name {
  display: block; font-family: Poppins, sans-serif; font-size: 29px; line-height: .93;
  font-weight: 800; letter-spacing: 0;
}
.brand-sub { display: block; color: #595e59; margin-top: 6px; font-size: 11px; letter-spacing: 0; font-weight: 600; }
.search-bar { display: flex; height: 45px; border: 1px solid #dce0da; border-radius: 7px; overflow: hidden; background: #fff; }
.search-bar input { min-width: 0; width: 100%; border: 0; padding: 0 17px; color: var(--ink); outline: 0; }
.search-bar input::placeholder { color: #8a8f8a; }
.search-bar button {
  width: 52px; border: 0; color: white; background: var(--forest); display: grid; place-items: center;
  transition: background .2s ease;
}
.search-bar button:hover { background: var(--forest-deep); }
.header-actions { display: flex; justify-content: flex-end; align-items: center; gap: 23px; }
.header-action { position: relative; display: inline-flex; align-items: center; gap: 8px; color: var(--ink); font-size: 12px; font-weight: 600; white-space: nowrap; }
.header-action:hover { color: var(--forest); }
.count-badge {
  position: absolute; top: -10px; left: 15px; min-width: 18px; height: 18px; padding: 0 4px;
  display: grid; place-items: center; border-radius: 20px; color: white; background: var(--forest);
  border: 2px solid white; font-size: 10px; font-weight: 700;
}

.desktop-nav { min-height: 53px; border-top: 1px solid #f0f1ef; }
.nav-inner { min-height: 53px; display: flex; align-items: stretch; justify-content: space-between; gap: 22px; }
.all-categories { display: flex; align-items: center; gap: 12px; font-size: 12px; font-weight: 700; white-space: nowrap; }
.all-categories .icon:last-child { width: 16px; height: 16px; margin-left: 2px; }
.main-nav { display: flex; align-items: stretch; justify-content: flex-end; gap: 30px; }
.main-nav a {
  display: inline-flex; align-items: center; position: relative; font-size: 12px; font-weight: 700;
  white-space: nowrap; transition: color .2s ease;
}
.main-nav a:hover, .main-nav a.active { color: var(--forest); }
.main-nav a.active::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 2px; background: var(--forest);
}
.mobile-header-row, .mobile-nav, .mobile-drawer { display: none; }

.btn {
  min-height: 44px; display: inline-flex; align-items: center; justify-content: center; gap: 9px; border-radius: var(--radius-sm);
  padding: 0 18px; border: 1px solid transparent; text-transform: uppercase; letter-spacing: 0; font-size: 12px; font-weight: 700;
  transition: transform .18s ease, background .18s ease, border-color .18s ease, color .18s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn--primary { background: var(--forest); color: white; }
.btn--primary:hover { background: var(--forest-deep); }
.btn--outline { background: white; color: var(--forest); border-color: var(--forest); }
.btn--outline:hover { background: var(--sage-wash); }
.btn--light { color: var(--forest); background: var(--sage-wash); }
.btn--block { width: 100%; }
.btn--small { min-height: 34px; padding-inline: 12px; font-size: 11px; }
.icon-button {
  width: 38px; height: 38px; display: inline-grid; place-items: center; border: 1px solid var(--line); background: white;
  color: var(--ink); border-radius: 50%; transition: color .18s, background .18s;
}
.icon-button:hover { color: var(--forest); background: var(--sage-wash); }
.pill { display: inline-flex; align-items: center; gap: 5px; padding: 4px 8px; border-radius: 5px; font-size: 10px; line-height: 1; font-weight: 700; text-transform: uppercase; }
.pill--new, .pill--best { color: white; background: var(--success); }
.pill--sale { color: white; background: var(--sale); }
.pill--sage { color: var(--forest); background: var(--sage-wash); }
.eyebrow { color: var(--forest); margin: 0 0 10px; font-size: 13px; font-weight: 700; }
.section { padding: 68px 0; }
.section--tight { padding: 44px 0; }
.section-heading { margin-bottom: 27px; text-align: center; }
.section-heading h2 { margin: 0; font-family: Poppins, sans-serif; font-size: 29px; letter-spacing: 0; }
.section-heading .line { width: 44px; height: 2px; margin: 11px auto 0; background: var(--forest); }
.section-heading--split { display: flex; align-items: end; justify-content: space-between; text-align: left; gap: 20px; }
.section-heading--split .line { margin-left: 0; }
.section-heading--split h2 { font-size: 28px; }
.section-heading p { margin: 8px 0 0; color: var(--muted); }

.home-hero { background: #f3f3ef; overflow: hidden; }
.hero-grid {
  min-height: 375px; display: grid; grid-template-columns: minmax(390px, .72fr) 1.28fr; overflow: hidden;
}
.hero-copy { position: relative; padding: 53px 48px 44px 8px; display: flex; flex-direction: column; justify-content: center; z-index: 1; }
.hero-copy::after {
  content: ""; position: absolute; width: 190px; height: 190px; right: -58px; bottom: -85px; opacity: .18;
  background: radial-gradient(circle at 50% 50%, transparent 56%, var(--sage) 57%, transparent 60%), radial-gradient(circle at 38% 38%, var(--sage) 0 4px, transparent 5px);
  border-radius: 50%; pointer-events: none;
}
.hero-copy h1 { max-width: 510px; margin: 0; font-family: Poppins, sans-serif; font-size: 64px; line-height: .98; letter-spacing: 0; }
.hero-copy > p:not(.eyebrow) { max-width: 365px; margin: 18px 0 22px; color: #323632; font-size: 16px; line-height: 1.55; }
.hero-actions { display: flex; gap: 12px; align-items: center; }
.hero-dots { display: flex; gap: 11px; margin-top: 27px; }
.hero-dots button { width: 11px; height: 11px; padding: 0; border: 0; border-radius: 50%; background: #d5d7d2; }
.hero-dots button.active { background: var(--forest); }
.hero-photo { position: relative; min-height: 375px; overflow: hidden; }
.hero-photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(243,243,239,.48), transparent 30%); pointer-events: none; }
.hero-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-note {
  position: absolute; right: 28px; bottom: 22px; display: flex; align-items: center; gap: 7px; padding: 8px 10px;
  color: var(--forest); background: rgba(255,255,255,.91); border-radius: 7px; box-shadow: var(--shadow); font-size: 11px; font-weight: 700;
}

.trust-strip { background: #fff; border-block: 1px solid var(--line); }
.trust-grid { display: grid; grid-template-columns: repeat(5, 1fr); }
.trust-item { min-height: 94px; padding: 20px 18px; display: flex; align-items: center; justify-content: center; gap: 14px; position: relative; }
.trust-item:not(:last-child)::after { content: ""; position: absolute; right: 0; width: 1px; height: 38px; background: var(--line); }
.trust-item .icon { width: 31px; height: 31px; }
.trust-item strong, .trust-item span { display: block; }
.trust-item strong { font-size: 12px; }
.trust-item span { margin-top: 2px; color: var(--muted); font-size: 11px; }

.category-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px; }
.category-card { overflow: hidden; background: white; border: 1px solid #eee; border-radius: var(--radius); box-shadow: var(--shadow); transition: transform .2s, box-shadow .2s; }
.category-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.category-card img { aspect-ratio: 1 / .9; object-fit: cover; }
.category-info { padding: 14px 14px 15px; text-align: center; }
.category-info h3 { margin: 0 0 9px; font-size: 13px; }
.category-info span { display: inline-flex; align-items: center; gap: 5px; color: var(--forest); font-size: 10px; font-weight: 700; }
.category-info .icon { width: 14px; height: 14px; }

.rail { display: grid; grid-auto-flow: column; grid-auto-columns: minmax(196px, 1fr); gap: 16px; overflow-x: auto; padding: 5px 2px 12px; scrollbar-width: thin; scroll-snap-type: x proximity; }
.rail > * { scroll-snap-align: start; }
.product-card { position: relative; display: flex; flex-direction: column; min-width: 0; padding: 11px; background: white; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: 0 1px 5px rgba(22,39,26,.035); transition: transform .18s ease, box-shadow .18s ease; }
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.product-card .pill { position: absolute; z-index: 2; top: 13px; left: 13px; }
.wishlist-btn { position: absolute; top: 11px; right: 11px; z-index: 2; width: 31px; height: 31px; padding: 0; display: grid; place-items: center; color: var(--ink); background: rgba(255,255,255,.86); border: 0; border-radius: 50%; }
.wishlist-btn:hover, .wishlist-btn.is-saved { color: var(--sale); background: white; }
.product-image { overflow: hidden; margin: -1px -1px 11px; background: #f5f3ee; border-radius: 7px; }
.product-image img { aspect-ratio: 1 / .88; object-fit: cover; mix-blend-mode: multiply; transition: transform .3s ease; }
.product-card:hover .product-image img { transform: scale(1.04); }
.product-title { min-height: 38px; margin: 0 0 6px; font-size: 12px; line-height: 1.45; font-weight: 700; }
.rating { display: flex; align-items: center; gap: 5px; min-height: 18px; color: var(--amber); font-size: 11px; }
.rating .stars { display: flex; gap: 1px; }
.rating .icon { width: 13px; height: 13px; }
.rating small { color: var(--muted); font-size: 10px; }
.product-price { display: flex; align-items: baseline; gap: 8px; margin: 5px 0 10px; }
.product-price strong { font-size: 14px; }
.product-price del { color: #8d918d; font-size: 10px; }
.product-card .btn { min-height: 34px; margin-top: auto; font-size: 10px; }
.product-card .btn .icon { width: 15px; height: 15px; }
.trending-card { display: flex; align-items: center; gap: 10px; min-width: 180px; padding: 8px; background: white; border: 1px solid var(--line); border-radius: var(--radius-sm); }
.trending-card img { width: 62px; height: 62px; border-radius: 6px; object-fit: cover; }
.trending-card strong { display: block; font-size: 11px; line-height: 1.35; }
.trending-card span { display: flex; align-items: center; gap: 4px; margin-top: 4px; color: var(--sale); font-size: 10px; font-weight: 700; }
.trending-card .icon { width: 13px; height: 13px; }

.bundle-section { padding: 12px 0 70px; }
.bundle-card { display: grid; grid-template-columns: 1.25fr 1.05fr .72fr; gap: 28px; align-items: center; padding: 30px; border: 1px solid var(--line); border-radius: 12px; background: #f5f7f2; box-shadow: var(--shadow); overflow: hidden; }
.bundle-copy { position: relative; z-index: 1; }
.bundle-copy h2 { max-width: 390px; margin: 0; font-family: Poppins, sans-serif; font-size: 31px; line-height: 1.1; letter-spacing: 0; }
.bundle-copy p { max-width: 380px; margin: 11px 0 0; color: var(--muted); }
.bundle-products { display: flex; align-items: center; justify-content: center; }
.bundle-product { width: 116px; position: relative; }
.bundle-product + .bundle-product { margin-left: -25px; }
.bundle-product img { aspect-ratio: 1; border: 4px solid #f5f7f2; border-radius: 50%; object-fit: cover; background: white; box-shadow: var(--shadow); }
.bundle-product span { display: block; padding-top: 7px; text-align: center; font-size: 10px; font-weight: 700; }
.bundle-summary { padding: 18px; background: white; border: 1px solid var(--line); border-radius: var(--radius); }
.bundle-summary h3 { margin: 0 0 14px; font-size: 13px; }
.bundle-row { display: flex; justify-content: space-between; gap: 10px; padding: 7px 0; color: var(--muted); font-size: 11px; border-bottom: 1px solid var(--line); }
.bundle-total { display: flex; justify-content: space-between; align-items: baseline; padding: 12px 0; }
.bundle-total del { color: var(--faint); font-size: 11px; }
.bundle-total strong { color: var(--sale); font-size: 19px; }

.offer-banner { display: grid; grid-template-columns: 1.15fr .85fr; overflow: hidden; background: var(--forest); border-radius: 12px; color: white; }
.offer-copy { padding: 42px 48px; }
.offer-copy .eyebrow { color: #c9d8c2; }
.offer-copy h2 { max-width: 450px; margin: 0; font-family: Poppins, sans-serif; font-size: 35px; line-height: 1.12; letter-spacing: 0; }
.offer-copy p { max-width: 430px; color: #e8eee4; }
.offer-copy .btn { margin-top: 8px; background: white; color: var(--forest); }
.offer-image { min-height: 260px; }
.offer-image img { width: 100%; height: 100%; object-fit: cover; mix-blend-mode: luminosity; opacity: .86; }
.testimonial-grid, .guide-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.testimonial { padding: 25px; background: white; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); }
.testimonial .rating { margin-bottom: 13px; }
.testimonial p { min-height: 66px; margin: 0; color: #454a45; font-size: 13px; line-height: 1.7; }
.reviewer { display: flex; align-items: center; gap: 10px; margin-top: 16px; font-size: 11px; font-weight: 700; }
.reviewer-bubble { width: 30px; height: 30px; display: grid; place-items: center; background: var(--sage-wash); color: var(--forest); border-radius: 50%; }
.guide-card { overflow: hidden; background: white; border: 1px solid var(--line); border-radius: var(--radius); }
.guide-card img { aspect-ratio: 1.6; object-fit: cover; }
.guide-card div { padding: 17px; }
.guide-card small { color: var(--forest); font-weight: 700; text-transform: uppercase; font-size: 10px; }
.guide-card h3 { margin: 7px 0 12px; font-size: 15px; line-height: 1.35; }
.text-link { display: inline-flex; align-items: center; gap: 5px; color: var(--forest); font-size: 11px; font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }
.text-link .icon { width: 14px; height: 14px; }

.newsletter { margin-top: 15px; padding: 31px 36px; display: grid; grid-template-columns: 1.1fr .9fr; gap: 40px; align-items: center; overflow: hidden; background: var(--sage-wash); border-radius: 12px; }
.newsletter h2 { margin: 0; font-family: Poppins, sans-serif; font-size: 25px; letter-spacing: 0; }
.newsletter p { margin: 6px 0 0; color: #4d584e; font-size: 13px; }
.newsletter-form { display: flex; gap: 8px; }
.newsletter-form input { min-width: 0; flex: 1; height: 46px; padding: 0 14px; border: 1px solid #cad6c5; border-radius: 7px; background: white; outline: 0; }
.newsletter-form .btn { flex: 0 0 auto; }

.site-footer { margin-top: 68px; padding: 54px 0 22px; color: #e9eee9; background: #183324; }
.footer-grid { display: grid; grid-template-columns: 1.35fr repeat(3, .8fr); gap: 48px; }
.footer-brand .brand { color: white; }
.footer-brand .brand-mark { color: #e9eee9; border-color: #e9eee9; }
.footer-brand .brand-sub { color: #b9c7b8; }
.footer-brand p { max-width: 285px; margin: 19px 0 0; color: #bdc9bc; font-size: 12px; line-height: 1.75; }
.socials { display: flex; gap: 8px; margin-top: 17px; }
.socials a { width: 31px; height: 31px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.25); border-radius: 50%; }
.socials .icon { width: 16px; height: 16px; }
.footer-col h4 { margin: 5px 0 15px; color: white; font-size: 12px; }
.footer-col a { display: block; margin-top: 9px; color: #bdc9bc; font-size: 12px; }
.footer-col a:hover { color: white; }
.footer-bottom { display: flex; justify-content: space-between; gap: 18px; margin-top: 42px; padding-top: 21px; border-top: 1px solid rgba(255,255,255,.15); color: #afbdaf; font-size: 11px; }

.breadcrumbs { padding-top: 18px; color: var(--muted); font-size: 11px; }
.breadcrumbs a:hover { color: var(--forest); }
.breadcrumbs span { margin: 0 7px; color: #afb4af; }
.page-intro { padding: 14px 0 23px; display: flex; justify-content: space-between; align-items: end; gap: 24px; }
.page-intro h1 { margin: 0; font-family: Poppins, sans-serif; font-size: 30px; letter-spacing: 0; }
.page-intro p { margin: 3px 0 0; color: var(--muted); }
.page-intro .page-note { color: var(--muted); font-size: 12px; white-space: nowrap; }
.category-banner { position: relative; display: grid; grid-template-columns: 1fr .9fr; min-height: 190px; margin-bottom: 24px; overflow: hidden; background: #ecf0e9; border-radius: 11px; }
.category-banner-copy { padding: 28px 34px; }
.category-banner h2 { margin: 0; font-family: Poppins, sans-serif; font-size: 25px; letter-spacing: 0; }
.category-banner p { max-width: 440px; margin: 7px 0 0; color: #4c554c; font-size: 13px; }
.category-banner img { height: 100%; object-fit: cover; object-position: center; }
.shop-shell { display: grid; grid-template-columns: 225px minmax(0, 1fr); gap: 22px; }
.filter-panel { align-self: start; padding: 15px 14px; background: white; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); }
.filter-group + .filter-group { margin-top: 18px; padding-top: 17px; border-top: 1px solid var(--line); }
.filter-title { margin: 0 0 10px; font-size: 11px; font-weight: 800; text-transform: uppercase; }
.filter-list { list-style: none; margin: 0; padding: 0; }
.filter-list li { display: flex; align-items: center; justify-content: space-between; gap: 8px; padding: 4px 0; color: #3e443f; font-size: 12px; }
.filter-list a:hover { color: var(--forest); text-decoration: underline; }
.check-row { display: flex; align-items: center; gap: 8px; padding: 4px 0; font-size: 11px; color: #454b45; }
.check-row input { appearance: none; width: 13px; height: 13px; margin: 0; border: 1px solid #cbd0cb; border-radius: 3px; background: white; }
.check-row input:checked { background: var(--forest); border-color: var(--forest); box-shadow: inset 0 0 0 3px white; }
.range-track { position: relative; height: 4px; margin: 18px 5px 12px; background: #d8ded7; border-radius: 4px; }
.range-track::before { content: ""; position: absolute; left: 0; right: 16%; height: 100%; background: var(--forest); border-radius: 4px; }
.range-track i { position: absolute; top: 50%; width: 13px; height: 13px; border-radius: 50%; background: var(--forest); transform: translateY(-50%); }
.range-track i:last-child { right: 13%; }
.range-amounts { display: flex; justify-content: space-between; color: var(--muted); font-size: 10px; }
.filter-bulk { display: flex; align-items: center; justify-content: center; gap: 7px; width: 100%; margin-top: 17px; padding-top: 16px; border: 0; border-top: 1px solid var(--line); background: none; color: var(--forest); font-size: 11px; font-weight: 700; }
.filter-bulk .icon { width: 17px; height: 17px; }
.shop-main { min-width: 0; }
.shop-toolbar { display: flex; align-items: center; justify-content: flex-end; gap: 9px; margin-bottom: 13px; }
.sort-select { min-width: 220px; height: 46px; padding: 0 38px 0 13px; border: 1px solid #d7dcd6; border-radius: 7px; background: white; color: #414641; appearance: none; }
.select-wrap { position: relative; }
.select-wrap .icon { position: absolute; top: 13px; right: 10px; pointer-events: none; }
.view-toggle { display: flex; height: 46px; border: 1px solid #d7dcd6; border-radius: 7px; overflow: hidden; background: white; }
.view-toggle button { width: 45px; display: grid; place-items: center; border: 0; background: transparent; color: var(--ink); }
.view-toggle button.active { background: var(--sage-wash); color: var(--forest); }
.active-filters { display: flex; align-items: center; flex-wrap: wrap; gap: 7px; margin: 0 0 17px; }
.filter-chip { display: inline-flex; align-items: center; gap: 7px; min-height: 28px; padding: 0 8px 0 10px; color: var(--forest); border-radius: 6px; background: var(--sage-wash); font-size: 11px; font-weight: 700; }
.filter-chip button { display: grid; place-items: center; padding: 0; border: 0; background: none; color: var(--forest); }
.filter-chip .icon { width: 14px; height: 14px; }
.clear-filters { padding: 0; border: 0; background: none; color: var(--forest); text-decoration: underline; text-underline-offset: 3px; font-size: 11px; font-weight: 700; }
.product-grid { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 13px; }
.product-grid .product-card { padding: 10px; }
.product-grid .product-image { margin-bottom: 9px; }
.pagination { display: flex; justify-content: center; gap: 6px; margin-top: 28px; }
.pagination a { width: 34px; height: 34px; display: grid; place-items: center; color: #4e554e; border: 1px solid var(--line); background: white; border-radius: 6px; font-size: 12px; font-weight: 700; }
.pagination a.active { color: white; border-color: var(--forest); background: var(--forest); }
.mobile-filter-button { display: none; }

.product-layout { display: grid; grid-template-columns: minmax(390px, 1.12fr) minmax(310px, .78fr) minmax(258px, .65fr); align-items: start; gap: 32px; padding: 18px 0 50px; }
.gallery-main { position: relative; overflow: hidden; background: #f4f2ed; border-radius: var(--radius); }
.gallery-main img { aspect-ratio: 1 / .95; object-fit: cover; }
.gallery-arrows { position: absolute; left: 12px; right: 12px; top: 50%; display: flex; justify-content: space-between; transform: translateY(-50%); }
.gallery-arrows .icon-button { width: 37px; height: 37px; border: 0; box-shadow: var(--shadow); }
.gallery-main .pill { position: absolute; top: 12px; left: 12px; z-index: 2; }
.gallery-thumbs { display: flex; gap: 10px; margin-top: 14px; overflow: auto; }
.gallery-thumb { position: relative; flex: 0 0 68px; padding: 0; overflow: hidden; border: 1px solid transparent; border-radius: 7px; background: #f3f2ee; }
.gallery-thumb.active { border-color: var(--forest); }
.gallery-thumb img { width: 68px; height: 68px; object-fit: cover; }
.gallery-thumb .play { position: absolute; inset: 0; display: grid; place-items: center; color: white; background: rgba(0,0,0,.26); }
.product-info-head { display: flex; gap: 12px; justify-content: space-between; }
.product-info h1 { margin: 0; font-family: Poppins, sans-serif; font-size: 31px; line-height: 1.2; letter-spacing: 0; }
.product-actions { display: flex; gap: 5px; }
.product-actions .icon-button { width: 35px; height: 35px; border: 0; }
.reviews-line { display: flex; align-items: center; gap: 8px; margin-top: 10px; color: var(--muted); font-size: 11px; }
.reviews-line .rating { min-height: 0; }
.reviews-line a { color: var(--forest); text-decoration: underline; text-underline-offset: 2px; }
.price-block { display: flex; align-items: center; flex-wrap: wrap; gap: 10px; margin-top: 13px; }
.price-block strong { color: var(--sale); font-size: 23px; }
.price-block del { color: #838783; font-size: 12px; }
.save-note { padding: 5px 8px; color: var(--sale); background: #fdeceb; border-radius: 5px; font-size: 10px; font-weight: 700; }
.variant-wrap { margin-top: 17px; padding-top: 15px; border-top: 1px solid var(--line); }
.variant-wrap p { margin: 0 0 8px; font-size: 12px; font-weight: 700; }
.variant-options { display: flex; gap: 7px; }
.swatch { display: grid; place-items: center; min-width: 35px; height: 30px; padding: 0 8px; border: 1px solid #ccd2cc; border-radius: 7px; background: white; color: #394039; font-size: 10px; font-weight: 700; }
.swatch.active { border: 2px solid var(--forest); color: var(--forest); }
.swatch-dot { width: 17px; min-width: 17px; padding: 0; border-radius: 50%; }
.product-desc { margin: 16px 0; color: #414641; font-size: 13px; line-height: 1.6; }
.feature-list { list-style: none; margin: 0; padding: 0; }
.feature-list li { display: flex; align-items: center; gap: 8px; padding: 4px 0; color: #424842; font-size: 11px; }
.feature-list .icon { width: 16px; height: 16px; color: var(--success); }
.stock-line { display: flex; align-items: center; gap: 8px; margin: 17px 0 12px; color: #555b55; font-size: 11px; }
.stock-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--success); }
.stock-line strong { color: var(--success); }
.purchase-row { display: flex; gap: 11px; }
.quantity { height: 42px; display: flex; align-items: center; border: 1px solid #d8ddd8; border-radius: 7px; background: white; }
.quantity button { width: 34px; height: 100%; display: grid; place-items: center; padding: 0; border: 0; background: none; color: var(--ink); }
.quantity span { min-width: 30px; text-align: center; font-size: 12px; font-weight: 700; }
.purchase-row .btn { flex: 1; min-height: 42px; }
.buy-now { margin-top: 8px; min-height: 39px; }
.delivery-callout { display: flex; align-items: flex-start; gap: 9px; margin-top: 9px; padding: 10px 12px; background: white; border: 1px solid var(--line); border-radius: 7px; color: #4a514a; font-size: 10px; line-height: 1.45; }
.delivery-callout .icon { color: var(--forest); }
.delivery-callout strong { color: var(--forest); }
.product-rail { overflow: hidden; background: white; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); }
.rail-benefits { padding: 4px 14px; }
.rail-benefit { display: flex; align-items: flex-start; gap: 12px; padding: 14px 2px; border-bottom: 1px solid var(--line); }
.rail-benefit:last-child { border-bottom: 0; }
.rail-benefit .icon { width: 27px; height: 27px; color: var(--forest); }
.rail-benefit strong, .rail-benefit span { display: block; }
.rail-benefit strong { font-size: 11px; }
.rail-benefit span { margin-top: 2px; color: var(--muted); font-size: 10px; }
.frequent-card { padding: 15px; border-top: 1px solid var(--line); }
.frequent-card h3 { margin: 0 0 12px; font-size: 12px; }
.frequent-product { display: grid; grid-template-columns: 48px 1fr auto; gap: 9px; align-items: center; padding: 8px 0; }
.frequent-product img { width: 48px; height: 48px; border-radius: 5px; object-fit: cover; }
.frequent-product strong { display: block; font-size: 10px; line-height: 1.4; }
.frequent-product span { color: #3d443d; font-size: 10px; font-weight: 700; }
.frequent-product input { accent-color: var(--forest); }
.rail-total { display: flex; justify-content: space-between; align-items: center; margin: 12px 0; padding-top: 10px; border-top: 1px solid var(--line); font-size: 11px; }
.rail-total del { color: var(--faint); }
.rail-total strong { color: var(--sale); font-size: 15px; }
.share-row { display: flex; align-items: center; justify-content: space-between; margin-top: 17px; color: var(--muted); font-size: 10px; }
.share-buttons { display: flex; gap: 6px; }
.share-buttons .icon-button { width: 27px; height: 27px; color: var(--forest); }
.share-buttons .icon { width: 14px; height: 14px; }
.product-tabs-wrap { padding: 3px 0 0; }
.product-tabs { display: flex; gap: 30px; overflow: auto; border-bottom: 1px solid var(--line); }
.product-tab { flex: 0 0 auto; position: relative; padding: 14px 0; border: 0; background: none; color: var(--ink); font-size: 11px; font-weight: 700; text-transform: uppercase; }
.product-tab.active { color: var(--forest); }
.product-tab.active::after { content: ""; position: absolute; right: 0; bottom: -1px; left: 0; height: 2px; background: var(--forest); }
.tab-panel { display: none; padding: 23px 2px 32px; }
.tab-panel.active { display: block; }
.tab-panel p { max-width: 790px; margin: 0; color: #4b514b; font-size: 12px; line-height: 1.75; }
.spec-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; margin-top: 20px; padding: 4px 0; border: 1px solid var(--line); border-radius: var(--radius); background: white; }
.spec-item { padding: 13px 15px; font-size: 11px; }
.spec-item strong { display: block; margin-bottom: 3px; }
.spec-item span { color: var(--muted); }
.questions { max-width: 760px; }
.questions details { padding: 14px 0; border-bottom: 1px solid var(--line); }
.questions summary { cursor: pointer; font-size: 12px; font-weight: 700; }
.questions details p { margin-top: 9px; }
.question-form { display: grid; grid-template-columns: 1fr auto; gap: 9px; margin-top: 18px; }
.question-form input { min-width: 0; height: 42px; padding: 0 12px; border: 1px solid #d5dbd5; border-radius: 7px; outline: none; }
.sticky-mobile-cart { display: none; }

.cart-layout { display: grid; grid-template-columns: minmax(0, 1fr) 360px; align-items: start; gap: 28px; padding: 22px 0 52px; }
.cart-title { margin: 0 0 16px; font-family: Poppins, sans-serif; font-size: 28px; letter-spacing: 0; }
.cart-list, .saved-later { overflow: hidden; background: white; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); }
.cart-item { display: grid; grid-template-columns: 105px 1fr auto; gap: 15px; align-items: center; padding: 15px; }
.cart-item + .cart-item { border-top: 1px solid var(--line); }
.cart-item img { width: 105px; aspect-ratio: 1; object-fit: cover; border-radius: 7px; background: #f3f3ef; }
.cart-item h3 { margin: 0 0 4px; font-size: 13px; }
.cart-item p { margin: 0 0 8px; color: var(--muted); font-size: 11px; }
.cart-item .quantity { width: 105px; height: 35px; }
.cart-item .quantity button { width: 32px; }
.cart-item-price { text-align: right; align-self: stretch; display: flex; flex-direction: column; justify-content: space-between; }
.cart-item-price strong { color: var(--forest); font-size: 14px; }
.remove-link { padding: 0; border: 0; background: none; color: var(--muted); text-decoration: underline; text-underline-offset: 3px; font-size: 10px; }
.order-summary { position: sticky; top: 18px; padding: 20px; background: white; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); }
.order-summary h2 { margin: 0 0 16px; font-family: Poppins, sans-serif; font-size: 18px; letter-spacing: 0; }
.summary-line { display: flex; justify-content: space-between; gap: 14px; padding: 7px 0; color: #424842; font-size: 12px; }
.summary-line span:last-child { font-weight: 600; }
.summary-line--discount { color: var(--success); }
.summary-total { display: flex; justify-content: space-between; align-items: end; margin-top: 10px; padding-top: 14px; border-top: 1px solid var(--line); }
.summary-total span { font-family: Poppins, sans-serif; font-size: 18px; font-weight: 700; }
.summary-total strong { color: var(--forest); font-family: Poppins, sans-serif; font-size: 25px; letter-spacing: 0; }
.promo-input { display: flex; gap: 8px; margin: 17px 0 10px; }
.promo-input input { min-width: 0; flex: 1; height: 39px; padding: 0 10px; border: 1px solid #d5dbd5; border-radius: 6px; outline: 0; font-size: 11px; }
.applied-promo { display: inline-flex; align-items: center; gap: 8px; padding: 7px 9px; color: var(--forest); border-radius: 5px; background: var(--sage-wash); font-size: 11px; font-weight: 700; }
.applied-promo button { padding: 0; border: 0; background: none; color: var(--forest); }
.secure-box { display: flex; align-items: center; gap: 12px; margin: 17px 0; padding: 14px; background: #f4f6f2; border: 1px solid #e1e7de; border-radius: 8px; }
.secure-box .icon { width: 36px; height: 36px; color: var(--forest); }
.secure-box strong, .secure-box span { display: block; }
.secure-box strong { font-size: 12px; }
.secure-box span { margin-top: 3px; color: var(--muted); font-size: 10px; }
.saved-later { margin-top: 25px; padding: 19px; }
.saved-later h2 { margin: 0 0 13px; font-size: 16px; }
.saved-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.saved-mini { display: flex; align-items: center; gap: 8px; min-width: 0; }
.saved-mini img { width: 48px; height: 48px; border-radius: 6px; object-fit: cover; }
.saved-mini strong { font-size: 10px; line-height: 1.35; }

.checkout-header .desktop-nav { display: none; }
.checkout-header .masthead { min-height: 90px; }
.checkout-page { padding: 35px 0 55px; }
.checkout-stepper { display: flex; max-width: 730px; margin: 0 0 35px 78px; }
.step { display: flex; flex: 1; gap: 10px; position: relative; align-items: center; }
.step:not(:last-child)::after { content: ""; position: absolute; left: 39px; right: 17px; top: 20px; border-top: 1px dashed #cbd1cb; }
.step-number { z-index: 1; width: 40px; height: 40px; display: grid; place-items: center; border: 1px solid #c5cbc5; border-radius: 50%; color: #7e847e; background: white; font-family: Poppins, sans-serif; font-size: 16px; }
.step.active .step-number { color: white; border-color: var(--forest); background: var(--forest); box-shadow: 0 4px 13px rgba(31,59,44,.2); }
.step-copy { font-size: 12px; font-weight: 700; line-height: 1.35; }
.checkout-grid { display: grid; grid-template-columns: minmax(0, 1fr) 410px; gap: 54px; align-items: start; }
.checkout-panel { padding-bottom: 24px; }
.checkout-section + .checkout-section { margin-top: 24px; padding-top: 23px; border-top: 1px solid var(--line); }
.checkout-section h2 { display: flex; align-items: center; gap: 9px; margin: 0 0 16px; font-family: Poppins, sans-serif; font-size: 17px; letter-spacing: 0; }
.checkout-section h2 .icon { color: var(--forest); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.field { position: relative; }
.field--wide { grid-column: 1 / -1; }
.field .icon { position: absolute; left: 13px; top: 15px; color: var(--forest); width: 17px; height: 17px; }
.field input, .field select, .field textarea { width: 100%; height: 56px; padding: 20px 12px 5px 39px; border: 1px solid #d2d9d1; border-radius: 6px; background: white; outline: 0; font-size: 12px; }
.field textarea { height: 88px; padding-top: 20px; resize: vertical; }
.field label { position: absolute; top: 8px; left: 39px; color: #252925; font-size: 9px; font-weight: 700; pointer-events: none; }
.field select { padding-left: 13px; appearance: auto; }
.field select + label { left: 13px; }
.save-address, .gift-option { display: flex; align-items: center; gap: 8px; margin-top: 11px; color: #404640; font-size: 11px; }
.save-address input, .gift-option input { appearance: none; width: 15px; height: 15px; margin: 0; border: 1px solid #bfc7bf; border-radius: 3px; background: white; }
.save-address input:checked, .gift-option input:checked { border-color: var(--forest); background: var(--forest); box-shadow: inset 0 0 0 3px white; }
.gift-note { display: none; margin-top: 9px; }
.gift-note.visible { display: block; }
.delivery-options, .payment-options { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.payment-options { grid-template-columns: repeat(4, 1fr); }
.radio-card { position: relative; min-height: 100px; padding: 15px; border: 1px solid #d8ded8; border-radius: 7px; background: white; }
.radio-card.selected { border-color: var(--sage); background: #fbfcfa; box-shadow: inset 0 0 0 1px rgba(124,148,115,.25); }
.radio-card input { position: absolute; top: 15px; left: 14px; width: 14px; height: 14px; accent-color: var(--forest); }
.radio-card > div { padding-left: 27px; }
.radio-card strong { display: block; font-size: 12px; }
.radio-card span { display: block; margin-top: 6px; color: #515851; font-size: 11px; line-height: 1.45; }
.radio-card .free-tag { position: absolute; top: 15px; right: 13px; }
.payment-card { min-height: 130px; }
.payment-card .payment-logo { width: 35px; height: 21px; margin: 14px 0 7px 27px; display: grid; place-items: center; color: var(--forest); background: #eff4ec; border-radius: 4px; font-size: 9px; font-weight: 800; text-transform: lowercase; }
.payment-card .payment-logo .icon { width: 22px; height: 22px; }
.tabby-note { display: none !important; color: var(--muted) !important; font-size: 10px !important; }
.radio-card.selected .tabby-note { display: block !important; }
.checkout-trust { display: grid; grid-template-columns: 1.35fr repeat(3, 1fr); margin-top: 24px; padding: 17px; background: #eef2eb; border-radius: 10px; }
.checkout-trust .trust-item { min-height: auto; justify-content: flex-start; padding: 0 13px; }
.checkout-trust .trust-item .icon { width: 28px; height: 28px; }
.checkout-trust .trust-item strong { font-size: 11px; }
.checkout-trust .trust-item span { font-size: 10px; }
.order-items-mini { padding-bottom: 11px; border-bottom: 1px solid var(--line); }
.order-item-mini { display: grid; grid-template-columns: 73px 1fr auto; align-items: center; gap: 10px; padding: 10px 0; }
.order-item-mini img { width: 73px; height: 61px; object-fit: cover; border-radius: 6px; }
.order-item-mini strong { display: block; font-size: 11px; line-height: 1.4; }
.order-item-mini span { display: block; margin-top: 5px; color: var(--muted); font-size: 10px; }
.order-item-mini b { font-size: 11px; }
.review-panel { display: none; margin-top: 23px; padding: 20px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; box-shadow: var(--shadow); }
.review-panel.visible { display: block; }
.review-panel h2 { margin: 0 0 15px; font-family: Poppins, sans-serif; font-size: 18px; }
.review-row { display: grid; grid-template-columns: 100px 1fr auto; gap: 16px; align-items: start; padding: 13px 0; border-top: 1px solid var(--line); font-size: 11px; }
.review-row strong { color: var(--forest); }
.review-row p { margin: 0; color: var(--muted); }
.edit-review { padding: 0; border: 0; background: none; color: var(--forest); }
.checkout-review-toggle { margin-top: 16px; }

.story-hero { display: grid; grid-template-columns: .87fr 1.13fr; min-height: 350px; overflow: hidden; background: #eff3ec; }
.story-copy { padding: 58px 54px; display: flex; flex-direction: column; justify-content: center; }
.story-copy h1 { max-width: 420px; margin: 0; font-family: Poppins, sans-serif; font-size: 41px; line-height: 1.12; letter-spacing: 0; }
.story-copy p:not(.eyebrow) { max-width: 430px; margin: 13px 0 0; color: #495249; font-size: 13px; line-height: 1.75; }
.story-hero img { width: 100%; height: 100%; object-fit: cover; }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.value-card { padding: 25px; background: white; border: 1px solid var(--line); border-radius: var(--radius); }
.value-card .icon { width: 32px; height: 32px; color: var(--forest); }
.value-card h3 { margin: 13px 0 6px; font-size: 15px; }
.value-card p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.65; }
.support-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 24px; margin-top: 29px; }
.track-panel, .contact-panel, .faq-panel { padding: 25px; background: white; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); }
.track-panel h2, .contact-panel h2, .faq-panel h2 { margin: 0 0 8px; font-family: Poppins, sans-serif; font-size: 20px; letter-spacing: 0; }
.track-panel p, .contact-panel p { margin: 0; color: var(--muted); font-size: 12px; }
.track-form { display: flex; gap: 8px; margin-top: 17px; }
.track-form input { min-width: 0; flex: 1; height: 43px; padding: 0 12px; border: 1px solid #d4dad4; border-radius: 6px; outline: 0; }
.faq-list { margin-top: 16px; }
.faq-list details { padding: 14px 0; border-top: 1px solid var(--line); }
.faq-list summary { display: flex; justify-content: space-between; gap: 12px; cursor: pointer; list-style: none; font-size: 12px; font-weight: 700; }
.faq-list summary::after { content: "+"; color: var(--forest); font-size: 18px; line-height: .8; }
.faq-list details[open] summary::after { content: "-"; }
.faq-list details p { margin: 9px 0 0; color: var(--muted); font-size: 12px; line-height: 1.7; }
.contact-form { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 17px; }
.contact-form input, .contact-form textarea { width: 100%; min-height: 43px; padding: 12px; border: 1px solid #d5dbd5; border-radius: 6px; outline: none; background: white; font-size: 12px; }
.contact-form textarea { min-height: 100px; resize: vertical; }
.contact-form .wide { grid-column: 1 / -1; }
.policy-notes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 25px; }
.policy-note { padding: 18px; background: var(--sage-wash); border-radius: 8px; }
.policy-note strong { display: block; color: var(--forest); font-size: 12px; }
.policy-note p { margin: 5px 0 0; color: #4b554c; font-size: 11px; }

.toast { position: fixed; z-index: 90; right: 22px; bottom: 26px; display: flex; align-items: center; gap: 9px; padding: 12px 15px; color: white; background: var(--forest); border-radius: 8px; box-shadow: var(--shadow-lg); transform: translateY(130px); opacity: 0; transition: transform .25s ease, opacity .25s ease; font-size: 12px; font-weight: 700; }
.toast.visible { transform: translateY(0); opacity: 1; }
.toast .icon { width: 17px; height: 17px; }

@media (max-width: 1320px) {
  :root { --container: min(1200px, calc(100% - 64px)); }
  .masthead { grid-template-columns: 240px minmax(260px, 1fr) 285px; gap: 22px; }
  .main-nav { gap: 18px; }
  .category-grid { grid-template-columns: repeat(3, 1fr); }
  .product-grid { grid-template-columns: repeat(5, minmax(0, 1fr)); }
  .product-layout { gap: 24px; }
  .product-info h1 { font-size: 28px; }
}

@media (max-width: 1100px) {
  :root { --container: min(100%, calc(100% - 48px)); }
  .masthead { grid-template-columns: 214px minmax(200px, 1fr) 235px; gap: 16px; }
  .brand-name { font-size: 25px; }
  .brand-mark { width: 48px; height: 48px; }
  .header-actions { gap: 13px; }
  .header-action { font-size: 11px; }
  .main-nav { gap: 13px; }
  .main-nav a, .all-categories { font-size: 11px; }
  .product-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .product-layout { grid-template-columns: minmax(350px, 1fr) minmax(300px, .85fr); }
  .product-rail { grid-column: 1 / -1; }
  .product-rail .frequent-card { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 10px; align-items: end; }
  .frequent-card h3 { grid-column: 1 / -1; margin-bottom: 0; }
  .frequent-product { padding: 0; }
  .frequent-card .btn { grid-column: 1 / -1; }
  .cart-layout { grid-template-columns: minmax(0, 1fr) 330px; }
  .checkout-grid { gap: 28px; grid-template-columns: minmax(0, 1fr) 360px; }
  .payment-options { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
  :root { --container: min(100%, calc(100% - 34px)); }
  body { padding-bottom: 74px; }
  .promo-links { display: none; }
  .promo-bar .container { justify-content: center; }
  .masthead, .desktop-nav { display: none; }
  .mobile-header-row { min-height: 68px; display: flex; align-items: center; justify-content: space-between; }
  .mobile-left, .mobile-actions { display: flex; align-items: center; gap: 10px; }
  .mobile-menu { width: 36px; height: 36px; display: grid; place-items: center; padding: 0; border: 0; background: none; }
  .mobile-menu .icon { width: 24px; height: 24px; }
  .mobile-header-row .brand-mark { width: 35px; height: 35px; border-width: 1.5px; border-radius: 9px; }
  .mobile-header-row .brand-mark .icon { width: 25px; height: 25px; }
  .mobile-header-row .brand-name { font-size: 19px; }
  .mobile-header-row .brand-sub { margin-top: 3px; font-size: 8px; letter-spacing: 0; }
  .mobile-action { position: relative; width: 36px; height: 36px; display: grid; place-items: center; color: var(--ink); }
  .mobile-action .count-badge { top: 0; left: 22px; }
  .mobile-search { display: flex; height: 42px; margin: 0 0 12px; border: 1px solid #dce0da; border-radius: 7px; overflow: hidden; }
  .mobile-search input { min-width: 0; width: 100%; border: 0; padding: 0 12px; outline: 0; }
  .mobile-search button { width: 47px; display: grid; place-items: center; border: 0; color: white; background: var(--forest); }
  .mobile-nav { position: fixed; z-index: 50; bottom: 0; right: 0; left: 0; height: 74px; display: grid; grid-template-columns: repeat(5, 1fr); border-top: 1px solid #dfe4df; background: rgba(255,255,255,.97); box-shadow: 0 -5px 21px rgba(22,39,26,.08); backdrop-filter: blur(10px); }
  .mobile-nav a { position: relative; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 3px; color: #6d746d; font-size: 10px; font-weight: 600; }
  .mobile-nav .nav-icon-wrap { width: 33px; height: 28px; display: grid; place-items: center; border-radius: 14px; transition: transform .18s, background .18s; }
  .mobile-nav a.active { color: var(--forest); }
  .mobile-nav a.active .nav-icon-wrap { background: var(--sage-wash); transform: scale(1.04); }
  .mobile-nav .count-badge { top: 5px; left: calc(50% + 5px); border-color: white; }
  .mobile-drawer { position: fixed; z-index: 80; inset: 0; background: rgba(18, 35, 23, .42); opacity: 0; visibility: hidden; transition: opacity .22s, visibility .22s; }
  .mobile-drawer.open { opacity: 1; visibility: visible; }
  .drawer-panel { width: min(330px, 86vw); height: 100%; padding: 23px; background: white; transform: translateX(-100%); transition: transform .22s; }
  .mobile-drawer.open .drawer-panel { transform: translateX(0); }
  .drawer-top { display: flex; align-items: center; justify-content: space-between; padding-bottom: 18px; border-bottom: 1px solid var(--line); }
  .drawer-close { width: 34px; height: 34px; display: grid; place-items: center; padding: 0; border: 1px solid var(--line); border-radius: 50%; background: white; }
  .drawer-links { display: grid; margin-top: 16px; }
  .drawer-links a { padding: 12px 0; border-bottom: 1px solid var(--line); color: #2d332d; font-weight: 700; }
  .drawer-links a.active { color: var(--forest); }
  .drawer-support { margin-top: 22px; color: var(--muted); font-size: 12px; }
  .home-hero { margin-top: 0; }
  .hero-grid { grid-template-columns: 1fr; min-height: 0; }
  .hero-copy { min-height: 310px; padding: 42px 0 32px; }
  .hero-photo { min-height: 270px; grid-row: 1; }
  .hero-copy { grid-row: 2; }
  .hero-copy::after { right: 5px; }
  .trust-grid { grid-template-columns: repeat(3, 1fr); }
  .trust-item:nth-child(3)::after { display: none; }
  .trust-item { min-height: 82px; padding: 15px 10px; justify-content: flex-start; }
  .trust-item .icon { width: 26px; height: 26px; }
  .trust-item span { font-size: 10px; }
  .category-grid { grid-template-columns: repeat(3, 1fr); }
  .bundle-card { grid-template-columns: 1fr 1fr; }
  .bundle-summary { grid-column: 1 / -1; }
  .shop-shell { grid-template-columns: 1fr; }
  .filter-panel { display: none; }
  .mobile-filter-button { display: inline-flex; }
  .shop-toolbar { justify-content: space-between; }
  .product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .product-layout { grid-template-columns: 1fr; max-width: 670px; margin-inline: auto; }
  .product-rail { grid-column: auto; }
  .product-rail .frequent-card { display: block; }
  .frequent-product { padding: 8px 0; }
  .checkout-grid, .cart-layout { grid-template-columns: 1fr; }
  .order-summary { position: static; }
  .checkout-stepper { margin-left: 0; }
  .checkout-trust { grid-template-columns: repeat(2, 1fr); gap: 18px 0; }
  .checkout-trust .trust-item:nth-child(2)::after, .checkout-trust .trust-item:last-child::after { display: none; }
  .story-hero { grid-template-columns: 1fr; }
  .story-hero img { height: 260px; }
  .story-copy { padding: 42px 0; }
}

@media (max-width: 620px) {
  :root { --container: min(100%, calc(100% - 30px)); }
  .section { padding: 46px 0; }
  .section--tight { padding: 30px 0; }
  .hero-copy h1 { font-size: 43px; }
  .hero-copy > p:not(.eyebrow) { font-size: 14px; }
  .hero-photo { min-height: 225px; }
  .hero-note { right: 12px; bottom: 12px; font-size: 9px; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-item:nth-child(3)::after { display: block; }
  .trust-item:nth-child(2)::after, .trust-item:last-child::after { display: none; }
  .trust-item { min-height: 76px; }
  .trust-item strong { font-size: 10px; }
  .trust-item span { line-height: 1.25; }
  .category-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .category-info { padding: 12px 9px; }
  .section-heading h2 { font-size: 25px; }
  .section-heading--split { align-items: center; }
  .section-heading--split h2 { font-size: 23px; }
  .rail { grid-auto-columns: 178px; }
  .product-card { padding: 8px; }
  .product-card .pill { top: 10px; left: 10px; font-size: 8px; }
  .wishlist-btn { top: 8px; right: 8px; width: 28px; height: 28px; }
  .product-title { min-height: 34px; font-size: 10px; }
  .rating .icon { width: 10px; height: 10px; }
  .rating small { font-size: 9px; }
  .product-price strong { font-size: 12px; }
  .product-price { gap: 4px; margin-bottom: 7px; }
  .product-card .btn { min-height: 31px; padding-inline: 5px; font-size: 9px; }
  .bundle-card { display: block; padding: 22px; }
  .bundle-copy h2 { font-size: 26px; }
  .bundle-products { justify-content: flex-start; margin: 18px 0; }
  .bundle-summary { margin-top: 20px; }
  .offer-banner { grid-template-columns: 1fr; }
  .offer-copy { padding: 30px 25px; }
  .offer-copy h2 { font-size: 29px; }
  .offer-image { min-height: 170px; }
  .testimonial-grid, .guide-grid { grid-template-columns: 1fr; }
  .newsletter { grid-template-columns: 1fr; gap: 17px; padding: 25px; }
  .newsletter-form { display: grid; grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px 18px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { display: block; line-height: 1.7; }
  .page-intro { display: block; padding-bottom: 17px; }
  .page-intro h1 { font-size: 27px; }
  .page-intro .page-note { margin-top: 10px; white-space: normal; }
  .category-banner { grid-template-columns: 1fr; }
  .category-banner img { display: none; }
  .category-banner-copy { padding: 23px; }
  .shop-toolbar { gap: 7px; }
  .sort-select { min-width: 0; width: 148px; height: 41px; font-size: 11px; }
  .view-toggle { height: 41px; }
  .view-toggle button { width: 38px; }
  .mobile-filter-button { min-height: 41px; padding-inline: 10px; font-size: 10px; }
  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
  .pagination { margin-top: 20px; }
  .product-layout { gap: 19px; padding-top: 13px; }
  .gallery-thumbs { gap: 7px; }
  .product-info h1 { font-size: 26px; }
  .purchase-row { gap: 8px; }
  .product-tabs { gap: 18px; }
  .spec-grid { grid-template-columns: repeat(2, 1fr); }
  .question-form { grid-template-columns: 1fr; }
  .sticky-mobile-cart { position: fixed; z-index: 45; right: 10px; bottom: 79px; left: 10px; display: flex; align-items: center; gap: 12px; padding: 9px; border: 1px solid var(--line); border-radius: 10px; background: rgba(255,255,255,.97); box-shadow: var(--shadow-lg); backdrop-filter: blur(10px); }
  .sticky-mobile-cart .sticky-price { min-width: 86px; padding-left: 5px; }
  .sticky-mobile-cart strong { display: block; color: var(--forest); font-size: 14px; }
  .sticky-mobile-cart span { color: var(--muted); font-size: 9px; }
  .sticky-mobile-cart .btn { flex: 1; min-height: 42px; }
  .cart-layout { padding-top: 14px; }
  .cart-item { grid-template-columns: 75px 1fr; gap: 10px; padding: 11px; }
  .cart-item img { width: 75px; }
  .cart-item-price { grid-column: 2; display: flex; flex-direction: row; align-items: center; }
  .cart-item h3 { font-size: 12px; }
  .saved-grid { grid-template-columns: 1fr; }
  .checkout-page { padding-top: 22px; }
  .checkout-stepper { margin-bottom: 25px; }
  .step { gap: 7px; }
  .step:not(:last-child)::after { left: 31px; right: 8px; top: 16px; }
  .step-number { width: 32px; height: 32px; font-size: 13px; }
  .step-copy { font-size: 9px; }
  .form-grid, .delivery-options { grid-template-columns: 1fr; }
  .payment-options { grid-template-columns: 1fr 1fr; }
  .checkout-trust { display: none; }
  .review-row { grid-template-columns: 75px 1fr auto; gap: 9px; }
  .story-copy { padding: 37px 0; }
  .story-copy h1 { font-size: 34px; }
  .values-grid, .support-grid, .policy-notes { grid-template-columns: 1fr; }
  .contact-form { grid-template-columns: 1fr; }
  .contact-form .wide { grid-column: auto; }
  .toast { right: 12px; bottom: 86px; left: 12px; justify-content: center; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; }
}
