/* =========================================================
   Caveman Club — Clean & Modern Storefront
   ========================================================= */

:root {
  --ink: #1a1611;
  --ink-soft: #4d4843;
  --muted: #908880;
  --line: #e0d8c8;
  --paper: #faf8f3;
  --sand: #f5efe3;
  --sand-2: #eae2cf;
  --accent: #c05520;
  --accent-deep: #963f18;
  --ok: #2c7a4b;
  --radius: 14px;
  --radius-sm: 10px;
  --shadow-sm: 0 1px 2px rgba(26,22,17,.05), 0 6px 18px rgba(26,22,17,.06);
  --shadow-md: 0 10px 40px rgba(26,22,17,.11);
  --maxw: 1240px;
  --ease: cubic-bezier(.22,.61,.36,1);
  --font-display: "Archivo", "Helvetica Neue", Arial, sans-serif;
  --font-body: "Inter", "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
h1,h2,h3,h4 { font-family: var(--font-display); font-weight: 700; line-height: 1.05; letter-spacing: -.02em; margin: 0; }
p { margin: 0; }

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.eyebrow { font-size: 12px; letter-spacing: .22em; text-transform: uppercase; font-weight: 600; color: var(--accent); display: inline-flex; align-items: center; gap: 9px; }
.eyebrow::before { content: ""; width: 18px; height: 1.5px; background: currentColor; opacity: .5; flex: none; }
.muted { color: var(--muted); }
.center { text-align: center; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px 30px; border-radius: 100px; border: 1px solid transparent;
  font-weight: 600; font-size: 15px; letter-spacing: .01em;
  transition: transform .25s var(--ease), background .25s var(--ease), color .25s var(--ease), box-shadow .25s var(--ease);
}
.btn:active { transform: translateY(1px) scale(.99); }
.btn-primary { background: var(--ink); color: #fff; }
.btn-primary:hover { background: var(--accent); box-shadow: 0 12px 28px rgba(192,85,32,.3); transform: translateY(-2px); }
.btn-light { background: #fff; color: var(--ink); border-color: var(--line); }
.btn-light:hover { border-color: var(--ink); transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--ink); border-color: rgba(26,22,17,.22); }
.btn-ghost:hover { background: var(--ink); color: #fff; transform: translateY(-1px); }
.btn-block { width: 100%; }
.btn-lg { padding: 18px 38px; font-size: 16px; }

/* ---------- Announcement bar ---------- */
.announce {
  background: var(--ink); color: #f4efe6; text-align: center;
  font-size: 12.5px; letter-spacing: .14em; text-transform: uppercase;
  padding: 9px 16px; font-weight: 500;
}
.announce b { color: #fff; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(255,255,255,.82);
  backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center;
  height: 72px;
}
.nav-left, .nav-right { display: flex; align-items: center; gap: 26px; }
.nav-right { justify-content: flex-end; }
.nav a.link { font-size: 14.5px; font-weight: 500; color: var(--ink-soft); transition: color .2s; position: relative; }
.nav a.link::after { content:""; position:absolute; left:0; bottom:-6px; height:2px; width:0; background:var(--accent); transition: width .25s var(--ease); }
.nav a.link:hover { color: var(--ink); }
.nav a.link:hover::after { width: 100%; }
.brand { display: flex; align-items: center; gap: 12px; justify-self: center; }
.brand .mark { width: 38px; height: 38px; border-radius: 50%; object-fit: cover; border: 1px solid var(--line); }
.brand .wordmark { font-family: var(--font-display); font-weight: 800; font-size: 19px; letter-spacing: .12em; text-transform: uppercase; }
.icon-btn { background: none; border: none; padding: 6px; display: inline-flex; align-items: center; color: var(--ink); position: relative; }
.icon-btn svg { width: 22px; height: 22px; }
.cart-count {
  position: absolute; top: -4px; right: -6px; background: var(--accent); color: #fff;
  font-size: 10.5px; font-weight: 700; min-width: 17px; height: 17px; border-radius: 50px;
  display: flex; align-items: center; justify-content: center; padding: 0 4px;
}
.burger { display: none; }
.nav-amazon { padding: 10px 18px; font-size: 14px; }

/* ---------- Hero ---------- */
.hero { position: relative; background: var(--sand); overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.05fr 1fr; align-items: stretch; min-height: 86vh; }
.hero-copy { display: flex; flex-direction: column; justify-content: center; padding: 80px clamp(24px, 5vw, 90px); }
.hero-copy h1 { font-size: clamp(42px, 6.2vw, 86px); font-weight: 800; letter-spacing: -.04em; }
.hero-copy h1 .ital { font-style: italic; font-family: var(--font-display); color: var(--accent); font-size: 1.07em; }
.hero-copy .lede { font-size: clamp(16px, 1.5vw, 19px); color: var(--ink-soft); max-width: 460px; margin-top: 22px; }
.hero-cta { display: flex; gap: 14px; margin-top: 36px; flex-wrap: wrap; }
.hero-meta { display: flex; gap: 30px; margin-top: 44px; flex-wrap: wrap; }
.hero-meta .stat .n { font-family: var(--font-display); font-weight: 800; font-size: 26px; }
.hero-meta .stat .l { font-size: 12.5px; color: var(--muted); letter-spacing: .04em; }
.hero-media { position: relative; clip-path: polygon(7% 0, 100% 0, 100% 100%, 0 100%); }
.hero-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-tag {
  position: absolute; left: 28px; bottom: 28px; z-index: 3;
  background: rgba(255,255,255,.92); backdrop-filter: blur(6px);
  border-radius: 100px; padding: 10px 18px; font-size: 13px; font-weight: 600;
  display: flex; align-items: center; gap: 10px; box-shadow: var(--shadow-sm);
}
.hero-tag .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--ok); }

/* ---------- Marquee ---------- */
.marquee { background: var(--ink); overflow: hidden; }
.marquee-track { display: flex; gap: 48px; white-space: nowrap; padding: 17px 0; width: max-content; animation: slide 26s linear infinite; }
.marquee span { font-family: var(--font-display); font-weight: 700; font-size: 15px; letter-spacing: .12em; text-transform: uppercase; color: rgba(250,248,243,.45); display: inline-flex; align-items: center; gap: 48px; }
.marquee span::after { content: "✦"; color: var(--accent); }
@keyframes slide { to { transform: translateX(-50%); } }

/* ---------- Sections ---------- */
.section { padding: clamp(64px, 9vw, 120px) 0; }
.section.alt { background: var(--sand); }
.sec-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; margin-bottom: 48px; flex-wrap: wrap; }
.sec-head h2 { font-size: clamp(30px, 4.2vw, 52px); }
.sec-head p { color: var(--ink-soft); max-width: 440px; margin-top: 12px; }

/* ---------- Product grid / cards ---------- */
.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px 22px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.card { position: relative; }
.card-media {
  position: relative; aspect-ratio: 3/4; border-radius: var(--radius); overflow: hidden;
  background: var(--sand-2); box-shadow: var(--shadow-sm);
}
.card-media img { width: 100%; height: 100%; object-fit: cover; transition: opacity .5s var(--ease), transform .9s var(--ease); }
.card-media .img-hover { position: absolute; inset: 0; opacity: 0; }
.card:hover .card-media .img-main { opacity: 0; }
.card:hover .card-media .img-hover { opacity: 1; }
.card:hover .card-media img { transform: scale(1.06); }
.card-badge {
  position: absolute; top: 12px; left: 12px; z-index: 2;
  background: var(--ink); color: #fff; font-size: 11px; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase; padding: 6px 11px; border-radius: 100px;
}
.card-quick {
  position: absolute; left: 12px; right: 12px; bottom: 12px; z-index: 2;
  opacity: 0; transform: translateY(8px); transition: all .3s var(--ease);
}
.card:hover .card-quick { opacity: 1; transform: translateY(0); }
.card-quick .btn { width: 100%; padding: 12px; font-size: 14px; background: #fff; color: var(--ink); }
.card-quick .btn:hover { background: var(--ink); color: #fff; }
.card-body { padding: 16px 2px 0; }
.card-body .row { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; }
.card-title { font-family: var(--font-display); font-weight: 700; font-size: 17px; letter-spacing: -.01em; }
.card-sub { font-size: 13px; color: var(--muted); margin-top: 3px; }
.price { font-weight: 600; font-size: 15.5px; white-space: nowrap; }
.price .was { color: var(--muted); text-decoration: line-through; font-weight: 400; margin-right: 7px; font-size: 13.5px; }
.swatches { display: flex; gap: 7px; margin-top: 12px; }
.swatch { width: 18px; height: 18px; border-radius: 50%; border: 1px solid rgba(0,0,0,.18); box-shadow: inset 0 0 0 2px #fff; }

/* ---------- Feature strip ---------- */
.features { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.feature { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px 24px; transition: transform .3s var(--ease), box-shadow .3s var(--ease); position: relative; overflow: hidden; }
.feature::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: var(--accent); transform: scaleX(0); transform-origin: left; transition: transform .35s var(--ease); }
.feature:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.feature:hover::before { transform: scaleX(1); }
.feature .fi { width: 42px; height: 42px; color: var(--accent); margin-bottom: 16px; }
.feature h3 { font-size: 18px; margin-bottom: 8px; }
.feature p { font-size: 14.5px; color: var(--ink-soft); }

/* ---------- Split / story ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: clamp(32px, 6vw, 80px); }
.split-media { border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/5; box-shadow: var(--shadow-md); }
.split-media img { width: 100%; height: 100%; object-fit: cover; }
.split h2 { font-size: clamp(28px, 4vw, 46px); margin-bottom: 20px; }
.split p { color: var(--ink-soft); margin-bottom: 16px; font-size: 16.5px; }
.checklist { list-style: none; padding: 0; margin: 24px 0 0; display: grid; gap: 12px; }
.checklist li { display: flex; gap: 12px; align-items: flex-start; font-size: 15.5px; }
.checklist .ck { flex: none; width: 22px; height: 22px; border-radius: 50%; background: var(--ink); color: #fff; display: grid; place-items: center; }
.checklist .ck svg { width: 13px; height: 13px; }

/* ---------- Banner CTA ---------- */
.banner { position: relative; border-radius: 22px; overflow: hidden; background: var(--ink); color: #fff; padding: clamp(48px, 7vw, 92px); }
.banner h2 { font-size: clamp(30px, 4.6vw, 58px); color: #fff; max-width: 16ch; }
.banner p { color: rgba(255,255,255,.72); margin: 18px 0 30px; max-width: 46ch; }
.banner > * { position: relative; z-index: 1; }
.banner::before { content: ""; position: absolute; left: -60px; bottom: -60px; z-index: 0; width: 300px; height: 300px; border-radius: 50%; background: radial-gradient(circle, rgba(192,85,32,.22), transparent 65%); }
.banner::after { content:""; position:absolute; right:-80px; top:-80px; width: 360px; height: 360px; border-radius: 50%; z-index: 0; background: radial-gradient(circle, rgba(192,85,32,.55), transparent 70%); }

/* ---------- Testimonials ---------- */
.quotes { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.quote { border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; background: var(--paper); }
.stars { color: var(--accent); letter-spacing: 2px; font-size: 15px; }
.quote p { margin: 14px 0 18px; font-size: 15.5px; color: var(--ink); }
.quote .who { font-size: 13.5px; color: var(--muted); font-weight: 600; }

/* ---------- Newsletter ---------- */
.news { display: grid; grid-template-columns: 1.1fr 1fr; gap: 48px; align-items: center; }
.news form { display: flex; gap: 10px; margin-top: 20px; max-width: 460px; }
.news input { flex: 1; padding: 15px 18px; border: 1px solid var(--line); border-radius: 100px; font-size: 15px; font-family: inherit; background: #fff; }
.news input:focus { outline: none; border-color: var(--ink); }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: #cfcabf; padding: 72px 0 36px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; }
.site-footer h4 { color: #fff; font-size: 13px; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 18px; }
.site-footer a { color: #cfcabf; font-size: 14.5px; display: block; padding: 5px 0; transition: color .2s; }
.site-footer a:hover { color: #fff; }
.footer-brand .wordmark { color: #fff; font-family: var(--font-display); font-weight: 800; font-size: 22px; letter-spacing: .12em; text-transform: uppercase; }
.footer-brand p { color: #9b968c; font-size: 14.5px; margin-top: 14px; max-width: 30ch; }
.socials { display: flex; gap: 12px; margin-top: 20px; }
.socials a { width: 38px; height: 38px; border: 1px solid rgba(255,255,255,.18); border-radius: 50%; display: grid; place-items: center; }
.socials a:hover { background: var(--accent); border-color: var(--accent); }
.socials svg { width: 17px; height: 17px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); margin-top: 48px; padding-top: 24px; display: flex; justify-content: space-between; gap: 16px; font-size: 13px; color: #9b968c; flex-wrap: wrap; }

/* ---------- Cart drawer ---------- */
.overlay { position: fixed; inset: 0; background: rgba(22,21,15,.45); opacity: 0; visibility: hidden; transition: opacity .3s; z-index: 90; }
.overlay.open { opacity: 1; visibility: visible; }
.drawer {
  position: fixed; top: 0; right: 0; height: 100%; width: min(420px, 92vw);
  background: #fff; z-index: 100; transform: translateX(100%); transition: transform .4s var(--ease);
  display: flex; flex-direction: column;
}
.drawer.open { transform: translateX(0); }
.drawer-head { display: flex; justify-content: space-between; align-items: center; padding: 22px 24px; border-bottom: 1px solid var(--line); }
.drawer-head h3 { font-size: 18px; letter-spacing: .04em; text-transform: uppercase; }
.drawer-body { flex: 1; overflow-y: auto; padding: 12px 24px; }
.drawer-foot { border-top: 1px solid var(--line); padding: 20px 24px; }
.cart-line { display: grid; grid-template-columns: 64px 1fr auto; gap: 14px; padding: 16px 0; border-bottom: 1px solid var(--line); }
.cart-line img { width: 64px; height: 82px; object-fit: cover; border-radius: 8px; background: var(--sand-2); }
.cart-line .nm { font-weight: 600; font-size: 14.5px; }
.cart-line .vr { font-size: 12.5px; color: var(--muted); margin-top: 2px; }
.qty { display: inline-flex; align-items: center; border: 1px solid var(--line); border-radius: 100px; margin-top: 10px; }
.qty button { background: none; border: none; width: 28px; height: 28px; font-size: 16px; color: var(--ink); }
.qty span { font-size: 13.5px; min-width: 22px; text-align: center; }
.cart-line .rm { background: none; border: none; color: var(--muted); font-size: 12px; text-decoration: underline; padding: 0; margin-top: 6px; }
.cart-line .lp { font-weight: 600; font-size: 14.5px; }
.cart-empty { text-align: center; color: var(--muted); padding: 60px 20px; }
.subtotal { display: flex; justify-content: space-between; font-weight: 600; font-size: 16px; margin-bottom: 6px; }
.drawer-foot .ship-note { font-size: 12.5px; color: var(--muted); margin-bottom: 16px; }

/* ---------- Page header (interior) ---------- */
.page-head { background: var(--sand); padding: clamp(48px,7vw,88px) 0 clamp(40px,5vw,60px); border-bottom: 1px solid var(--line); }
.page-head h1 { font-size: clamp(34px,5vw,64px); }
.page-head p { color: var(--ink-soft); max-width: 56ch; margin-top: 14px; font-size: 17px; }
.crumbs { font-size: 13px; color: var(--muted); margin-bottom: 18px; letter-spacing: .03em; }
.crumbs a:hover { color: var(--ink); }

/* ---------- Product detail ---------- */
.pdp { display: grid; grid-template-columns: 1.15fr 1fr; gap: clamp(28px,4vw,64px); align-items: start; }
.gallery { position: sticky; top: 92px; }
.gallery-main { aspect-ratio: 3/4; border-radius: var(--radius); overflow: hidden; background: var(--sand-2); box-shadow: var(--shadow-sm); }
.gallery-main img { width: 100%; height: 100%; object-fit: cover; }
.thumbs { display: grid; grid-template-columns: repeat(6,1fr); gap: 10px; margin-top: 12px; }
.thumbs button { padding: 0; border: 1px solid var(--line); border-radius: 9px; overflow: hidden; aspect-ratio: 3/4; background: var(--sand-2); transition: border-color .2s; }
.thumbs button.active { border-color: var(--ink); }
.thumbs img { width: 100%; height: 100%; object-fit: cover; }
.pdp-info h1 { font-size: clamp(28px,3.6vw,44px); margin: 8px 0 10px; }
.pdp-rating { display: flex; align-items: center; gap: 10px; font-size: 13.5px; color: var(--muted); margin-bottom: 18px; }
.pdp-price { display: flex; align-items: baseline; gap: 12px; margin-bottom: 8px; }
.pdp-price .now { font-family: var(--font-display); font-weight: 800; font-size: 30px; }
.pdp-price .was { color: var(--muted); text-decoration: line-through; font-size: 18px; }
.pdp-price .off { background: #f1ddd2; color: var(--accent-deep); font-weight: 700; font-size: 12.5px; padding: 4px 10px; border-radius: 100px; }
.pdp-tax { font-size: 12.5px; color: var(--muted); margin-bottom: 26px; }
.opt-label { font-size: 13px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; margin-bottom: 12px; display: flex; justify-content: space-between; }
.opt-label .val { color: var(--ink-soft); text-transform: none; letter-spacing: 0; font-weight: 500; }
.color-row { display: flex; gap: 12px; margin-bottom: 26px; }
.color-opt { width: 40px; height: 40px; border-radius: 50%; border: 1px solid rgba(0,0,0,.15); position: relative; box-shadow: inset 0 0 0 3px #fff; transition: transform .2s; }
.color-opt:hover { transform: scale(1.08); }
.color-opt.active { box-shadow: inset 0 0 0 3px #fff, 0 0 0 2px var(--ink); }
.size-row { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 8px; }
.size-opt { min-width: 52px; padding: 12px 10px; border: 1px solid var(--line); border-radius: 10px; background: #fff; font-weight: 600; font-size: 14.5px; transition: all .2s; }
.size-opt:hover { border-color: var(--ink); }
.size-opt.active { background: var(--ink); color: #fff; border-color: var(--ink); }
.size-help { font-size: 13px; color: var(--accent); text-decoration: underline; background: none; border: none; padding: 0; margin-bottom: 26px; display: inline-block; }
.buy-row { display: flex; gap: 12px; margin-bottom: 18px; }
.buy-row .btn-primary { flex: 1; }
.combo { background: var(--sand); border: 1px dashed var(--accent); border-radius: 12px; padding: 14px 18px; font-size: 14px; margin-bottom: 26px; }
.combo b { color: var(--accent-deep); }
.accordion { border-top: 1px solid var(--line); }
.acc-item { border-bottom: 1px solid var(--line); }
.acc-trigger { width: 100%; background: none; border: none; padding: 18px 0; display: flex; justify-content: space-between; align-items: center; font-family: var(--font-display); font-weight: 700; font-size: 16px; letter-spacing: -.01em; }
.acc-trigger .pm { transition: transform .3s; color: var(--accent); font-size: 20px; }
.acc-item.open .pm { transform: rotate(45deg); }
.acc-panel { max-height: 0; overflow: hidden; transition: max-height .35s var(--ease); }
.acc-panel-inner { padding: 0 0 20px; color: var(--ink-soft); font-size: 14.5px; }
.trust-row { display: flex; gap: 18px; margin-top: 24px; flex-wrap: wrap; }
.trust-row .t { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--ink-soft); }
.trust-row svg { width: 18px; height: 18px; color: var(--accent); }

/* ---------- Size table ---------- */
.size-table { width: 100%; border-collapse: collapse; margin-top: 10px; }
.size-table th, .size-table td { border: 1px solid var(--line); padding: 12px 14px; text-align: center; font-size: 14.5px; }
.size-table thead th { background: var(--ink); color: #fff; font-weight: 600; letter-spacing: .04em; }
.size-table tbody tr:nth-child(even) { background: var(--sand); }

/* ---------- Story page bits ---------- */
.value-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.value { padding: 30px; border: 1px solid var(--line); border-radius: var(--radius); }
.value .num { font-family: var(--font-display); font-weight: 800; font-size: 40px; color: var(--sand-2); -webkit-text-stroke: 1px var(--line); }
.value h3 { font-size: 20px; margin: 8px 0 10px; }
.value p { font-size: 14.5px; color: var(--ink-soft); }
.faq-list { max-width: 820px; margin: 0 auto; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Toast ---------- */
.toast {
  position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%) translateY(120%);
  background: var(--ink); color: #fff; padding: 14px 22px; border-radius: 100px; z-index: 120;
  font-size: 14px; font-weight: 500; box-shadow: var(--shadow-md); transition: transform .4s var(--ease);
  display: flex; align-items: center; gap: 10px;
}
.toast.show { transform: translateX(-50%) translateY(0); }
.toast svg { width: 18px; height: 18px; color: #6fcf97; }

/* ---------- Mobile nav ---------- */
.mobile-nav { position: fixed; inset: 0; background: #fff; z-index: 95; transform: translateY(-100%); transition: transform .4s var(--ease); padding: 90px 28px 28px; }
.mobile-nav.open { transform: translateY(0); }
.mobile-nav a { display: block; font-family: var(--font-display); font-weight: 700; font-size: 30px; padding: 14px 0; border-bottom: 1px solid var(--line); }
.mobile-close { position: absolute; top: 22px; right: 22px; background: none; border: none; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .product-grid { grid-template-columns: repeat(3,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .news { grid-template-columns: 1fr; gap: 24px; }
}
@media (max-width: 880px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-media { min-height: 60vh; order: -1; clip-path: none; }
  .hero-copy { padding: 56px 24px; }
  .split, .pdp { grid-template-columns: 1fr; }
  .gallery { position: static; }
  .features, .value-grid, .quotes { grid-template-columns: 1fr 1fr; }
  .nav-left { display: none; }
  .nav { grid-template-columns: auto 1fr auto; }
  .brand { justify-self: start; }
  .burger { display: inline-flex; }
  .nav-right .link, .nav-amazon { display: none; }
}
@media (max-width: 620px) {
  .product-grid, .grid-3 { grid-template-columns: 1fr 1fr; gap: 16px; }
  .features, .value-grid, .quotes { grid-template-columns: 1fr; }
  .sec-head { flex-direction: column; align-items: flex-start; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-meta { gap: 22px; }
  .thumbs { grid-template-columns: repeat(5,1fr); }
  .wrap { padding: 0 18px; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
