:root {
  --cream: #fff8f1;
  --navy: #253654;
  --ink: #1a1a1a;
  --muted: #7a766d;
  --line: #e8dfd4;
  --peach: #feefe3;
  --brass: #8c6a2f;
  --sale: #253654;
  --green: #4caf50;
  --heading: "Crimson Pro", Georgia, serif;
  --body: Inter, system-ui, sans-serif;
  --max: 1400px;
}
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; background: var(--cream); color: var(--ink); font-family: var(--body); overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* Announcement */
.announcement {
  background: var(--navy);
  color: #fff;
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 10px 16px;
  display: flex; align-items: center; justify-content: center; gap: 18px;
}
.announcement .chev { opacity: .65; font-size: 14px; font-weight: 400; }

/* Header: logo left, nav center, utils right */
.site-header {
  position: sticky; top: 0; z-index: 40;
  background: var(--cream);
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 14px 28px;
}
.site-header .menu-toggle { display: none; }
.site-header .logo { justify-self: start; }
.site-header .logo img { width: 168px; height: auto; }
.site-header nav {
  display: flex; justify-content: center; align-items: center; gap: 22px; flex-wrap: wrap;
  font-size: 14px;
}
.site-header nav a { color: var(--navy); }
.nav-drop { position: relative; }
.nav-drop > a { display: inline-flex; align-items: center; gap: 4px; }
.nav-caret { font-size: 9px; opacity: .7; }
.nav-drop__menu {
  display: none; position: absolute; top: 100%; left: 0; min-width: 220px;
  background: var(--cream); border: 1px solid var(--line); padding: 8px 0;
  box-shadow: 0 8px 24px rgba(0,0,0,.08); z-index: 20;
}
.nav-drop:hover .nav-drop__menu, .nav-drop:focus-within .nav-drop__menu { display: block; }
.nav-drop__menu a { display: block; padding: 10px 16px; white-space: nowrap; }
.nav-drop__menu a:hover { background: #f4eadb; }
.header-right { display: flex; align-items: center; gap: 14px; font-size: 13px; color: var(--navy); }
.locale { display: inline-flex; align-items: center; gap: 6px; }
.flag-fr { border: 1px solid rgba(0,0,0,.08); }
.icon-btn { background: none; border: 0; padding: 6px; position: relative; color: var(--navy); }
.cart-count {
  position: absolute; top: -4px; right: -6px;
  background: var(--navy); color: #fff; border-radius: 99px;
  font-size: 10px; min-width: 16px; height: 16px; line-height: 16px; text-align: center;
}
.mobile-nav { display: none; position: fixed; inset: 0; background: var(--cream); z-index: 70; padding: 24px; overflow: auto; }
.mobile-nav.is-open { display: block; }
.mobile-nav a { display: block; padding: 14px 0; border-bottom: 1px solid var(--line); font-size: 18px; }
.mobile-nav .nav-drop__menu { display: block; position: static; border: 0; box-shadow: none; padding: 0 0 0 12px; }
.mobile-nav .nav-drop__menu a { font-size: 15px; color: var(--muted); }
.mobile-nav__close { float: right; }

.search-modal {
  position: fixed; inset: 0; background: rgba(0,0,0,.55); z-index: 95;
  display: none; align-items: flex-start; justify-content: center; padding: 80px 16px 16px;
}
.search-modal.is-open { display: flex; }
.search-modal__box {
  width: min(560px, 100%); background: #fff; border-radius: 10px; padding: 20px; position: relative;
}
.search-modal__close { position: absolute; top: 8px; right: 10px; border: 0; background: none; font-size: 22px; }
.search-modal input {
  width: 100%; font-size: 16px; padding: 12px 14px; border: 1px solid var(--line); border-radius: 6px;
}
.search-hit { display: flex; gap: 12px; align-items: center; padding: 10px 0; border-bottom: 1px solid var(--line); }
.search-hit img { width: 48px; height: 48px; object-fit: cover; }
.search-empty { color: var(--muted); padding: 16px 0; }

.btn, .button {
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--ink); color: #fff; border: 0; border-radius: 4px;
  padding: 14px 28px; font-size: 13px; letter-spacing: .12em; text-transform: uppercase; font-weight: 600;
}
.btn:hover { opacity: .88; }

/* Home */
.hero { position: relative; background: #1c1814; color: #fff; overflow: hidden; }
.hero img { width: 100%; height: 560px; object-fit: cover; }
.hero .hero-copy {
  position: absolute; inset: 0; display: flex; flex-direction: column;
  align-items: center; justify-content: center; text-align: center; padding: 32px;
}
.hero h1 {
  font-family: var(--heading); font-size: clamp(36px, 5.5vw, 68px); font-weight: 500;
  margin: 0; color: #fff; text-shadow: 0 2px 18px rgba(0,0,0,.35);
}
.marquee {
  overflow: hidden; border-block: 1px solid var(--line); padding: 16px 0;
  font-family: var(--heading); font-size: clamp(28px, 4vw, 44px); white-space: nowrap;
}
.marquee-inner { display: inline-flex; animation: marquee-slide 32s linear infinite; }
.marquee-inner span { padding-right: 12px; }
@keyframes marquee-slide { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.cat-slider { padding: 22px 0 8px; }
.cat-slider__track {
  display: flex; justify-content: center; gap: 36px; margin: 0; padding: 0 16px; list-style: none;
  overflow-x: auto; scrollbar-width: none;
}
.cat-slider__track::-webkit-scrollbar { display: none; }
.cat-slider__link { display: flex; flex-direction: column; align-items: center; gap: 10px; font-size: 13px; color: var(--ink); }
.cat-slider__img {
  width: 96px; height: 96px; border-radius: 50%; object-fit: cover; background: #efe6d8;
  border: 1px solid #d8cfc3;
}
.section { max-width: var(--max); margin: 0 auto; padding: 48px 20px; }
.section h2 { font-family: var(--heading); font-weight: 500; font-size: 36px; text-align: center; margin: 0 0 12px; }
.section--best h2 { text-align: left; margin-bottom: 28px; }
.section-sub { text-align: center; color: var(--muted); margin: 0 0 28px; }
.section-cta { text-align: center; margin-top: 32px; }
.btn-ghost { background: transparent; color: var(--ink); border: 1px solid var(--ink); }
.grid-products { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 22px; }
.grid-5 { grid-template-columns: repeat(5, minmax(0, 1fr)); }
.grid-best { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 48px 24px; }
.card { display: flex; flex-direction: column; gap: 8px; }
.card .thumb {
  position: relative; aspect-ratio: 1; background: #efe6d8; overflow: hidden; display: block;
}
.card .thumb > a { display: block; width: 100%; height: 100%; }
.card .thumb img { width: 100%; height: 100%; object-fit: cover; }
.card .thumb .img-secondary {
  position: absolute; inset: 0; opacity: 0; transition: opacity .35s ease;
}
.card .thumb:hover .img-secondary { opacity: 1; }
.card-badge {
  position: absolute; top: 10px; left: 10px; z-index: 2;
  background: var(--navy); color: #fff; font-size: 11px; font-weight: 700;
  letter-spacing: .04em; padding: 5px 9px; border-radius: 4px;
}
.card-qa {
  position: absolute; left: 50%; bottom: 16px; z-index: 2;
  transform: translateX(-50%);
  background: #fff; color: var(--ink); border: 0; border-radius: 4px;
  padding: 12px 22px; font-size: 13px; font-weight: 600; letter-spacing: .04em;
  box-shadow: 0 8px 24px rgba(0,0,0,.16);
  opacity: 0; pointer-events: none; transition: opacity .2s;
  white-space: nowrap;
}
.card .thumb:hover .card-qa { opacity: 1; pointer-events: auto; }
.card .title { font-size: 15px; font-weight: 700; }
.card .price { font-size: 14px; }
.card .price .was { color: var(--muted); text-decoration: line-through; margin-left: 8px; }
.card .price .now { color: var(--navy); font-weight: 600; }
.card-swatches { display: flex; align-items: center; gap: 6px; }
.card-swatch {
  width: 16px; height: 16px; border-radius: 50%; border: 2px solid #fff;
  box-shadow: 0 0 0 1px #cfc4b4; padding: 0;
}
.card-swatch.is-on { box-shadow: 0 0 0 1px var(--ink); }
.card-more { font-size: 12px; color: var(--muted); }

.cap-banners { width: 100%; padding: 8px 16px 28px; box-sizing: border-box; }
.cap-banner {
  position: relative; display: block; width: 100%; max-width: var(--max); margin: 0 auto;
  border-radius: 15px; overflow: hidden; color: #fff;
}
.cap-banner img { display: block; width: 100%; height: auto; transition: transform .4s ease; }
.cap-banner:hover img { transform: scale(1.02); }
.cap-banner::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.55) 0%, rgba(0,0,0,.15) 40%, rgba(0,0,0,0) 70%);
  pointer-events: none;
}
.cap-banner__content {
  position: absolute; left: 0; bottom: 0; z-index: 1; padding: 28px 32px; max-width: 80%;
}
.cap-banner__title {
  margin: 0 0 6px; font-family: var(--heading); font-size: clamp(28px, 3vw, 40px);
  font-weight: 500; letter-spacing: -.02em; color: #fff;
}
.cap-banner__text { margin: 0 0 16px; font-size: 16px; color: #fff; }
.cap-banner__btn {
  display: inline-flex; background: #fff; color: var(--ink); border-radius: 4px;
  padding: 12px 22px; font-size: 13px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
}

.site-footer { background: #1c1814; color: #f4eadb; padding: 48px 20px 28px; margin-top: 64px; }
.footer-grid { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 32px; }
.site-footer h3 { font-family: var(--heading); font-weight: 500; margin: 0 0 12px; }
.site-footer a { display: block; color: #d9cbb8; font-size: 14px; margin: 6px 0; }
.site-footer p { color: #d9cbb8; font-size: 14px; line-height: 1.6; }
.copy { text-align: center; margin-top: 32px; font-size: 12px; color: #a89884; }

/* ========== PDP — Impact layout ========== */
.pdp {
  max-width: 1280px; margin: 0 auto; padding: 28px 24px 20px;
  display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(320px, .85fr); gap: 40px;
  align-items: start;
}
.gallery {
  display: grid; grid-template-columns: 72px minmax(0, 1fr); gap: 12px; align-items: start;
}
.thumbs {
  display: flex; flex-direction: column; gap: 8px; max-height: 620px; overflow: auto;
  scrollbar-width: thin;
}
.thumbs button {
  border: 1px solid transparent; padding: 0; background: #efe6d8; width: 64px; height: 64px; border-radius: 4px; overflow: hidden;
}
.thumbs button.is-on { border-color: var(--ink); }
.thumbs img { width: 100%; height: 100%; object-fit: cover; }
.thumb-collage { padding: 0; }
.collage-grid { display: grid; grid-template-columns: 1fr 1fr; width: 64px; height: 64px; }
.collage-grid img { width: 100%; height: 32px; object-fit: cover; }
.gallery-main { position: relative; background: #efe6d8; aspect-ratio: 1; border-radius: 2px; overflow: hidden; }
.gallery-main img { width: 100%; height: 100%; object-fit: cover; }
.gallery-collage {
  position: absolute; inset: 0; display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 1fr 1fr;
}
.gallery-collage[hidden] { display: none; }
.gallery-collage img { width: 100%; height: 100%; object-fit: cover; }
.gallery-main.has-collage > img#gallery-main { visibility: hidden; }
.zoom-btn {
  position: absolute; right: 12px; bottom: 12px; width: 36px; height: 36px; border-radius: 50%;
  border: 0; background: #fff; box-shadow: 0 2px 8px rgba(0,0,0,.12);
  display: flex; align-items: center; justify-content: center;
}
.zoom-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,.82); z-index: 120;
  display: flex; align-items: center; justify-content: center; padding: 24px; cursor: zoom-out;
}
.zoom-overlay[hidden] { display: none; }
.zoom-overlay img { max-width: 92vw; max-height: 92vh; object-fit: contain; }

.pdp-info { padding-top: 4px; }
.trustpilot-badge { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; color: inherit; }
.trustpilot-badge__stars { width: 100px; height: auto; }
.trustpilot-badge__info { display: flex; align-items: center; gap: 6px; font-size: 15px; }
.trustpilot-badge__rating { font-weight: 800; }
.pdp-info h1 {
  font-family: var(--heading); font-weight: 500; font-size: clamp(30px, 3vw, 42px);
  margin: 0 0 10px; color: var(--navy);
}
.price-row { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; margin: 4px 0 12px; }
.price-now { font-size: 22px; font-weight: 700; color: var(--navy); }
.price-was { font-size: 15px; color: var(--muted); text-decoration: line-through; }
.badge-off {
  background: var(--navy); color: #fff; font-size: 11px; font-weight: 700;
  letter-spacing: .06em; padding: 4px 8px; border-radius: 2px;
}
.pdp-sep { border: 0; border-top: 1px solid var(--line); margin: 8px 0 16px; }
.opt-label { font-size: 14px; color: var(--muted); margin: 10px 0 8px; }
.opt-label strong { color: var(--ink); font-weight: 500; }
.swatches { display: flex; flex-wrap: wrap; gap: 8px; margin: 0 0 14px; }
.swatch {
  width: 28px; height: 28px; border-radius: 50%; border: 2px solid #fff;
  box-shadow: 0 0 0 1px #cfc4b4; padding: 0;
}
.swatch.is-on { box-shadow: 0 0 0 2px var(--ink); }
.size-row { margin: 4px 0 6px; }
.block-swatch {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 240px; padding: 12px 28px; border: 1px solid #111;
  border-radius: 999px; background: #fff; font-size: 14px;
}
.size-guide-button {
  text-decoration: underline; font-size: 12px; color: #000;
  display: inline-flex; align-items: center; gap: 8px; margin: 10px 0 14px; cursor: pointer;
}
.size-guide-button img { width: 19px; height: 19px; }

.instock-pulse {
  background: var(--peach); color: #000; font-size: 12px; font-weight: 700;
  padding: 10px 12px; border-radius: 4px; margin: 0 0 12px;
}
.instock-left { display: flex; flex-direction: column; gap: 6px; }
.info-row { display: flex; align-items: center; }
.info-icon { width: 16px; height: 16px; margin-right: 8px; }
.icon--pulsing { position: relative; width: 16px; height: 16px; margin-right: 8px; }
.icon--pulsing:after, .icon--pulsing:before {
  background: var(--green); width: 8px; height: 8px; border-radius: 50%;
  position: absolute; left: 4px; top: 4px; content: "";
}
.icon--pulsing:before { animation: inventory-pulse 2s linear infinite; }
@keyframes inventory-pulse {
  0% { transform: scale(1); opacity: .7; }
  100% { transform: scale(2.5); opacity: 0; }
}
.stock-warning { color: var(--green); }

.ww-bundle-bar {
  width: 100%; text-align: center; border: 1px solid #1a1a1a; border-radius: 4px;
  padding: 10px 14px; font-size: 13px; letter-spacing: .5px; margin: 0 0 14px; background: #fff;
}
.ww-bundle-title { font-weight: 700; letter-spacing: 1.5px; margin-right: 10px; text-transform: uppercase; }
.ww-bundle-bar em { font-style: italic; font-weight: 700; }
.ww-bundle-divider { margin: 0 8px; }

.atc, .button--xl {
  width: 100%; background: #000; color: #fff; border: 0; border-radius: 4px;
  padding: 16px; letter-spacing: .14em; text-transform: uppercase; font-size: 14px; font-weight: 700; margin: 0 0 8px;
}
.guarantee-row {
  display: flex; justify-content: center; align-items: center; gap: 6px;
  font-size: 14px; margin: 6px 0 8px;
}
.guarantee-row img { width: 21px; height: 21px; }
.pay-row { display: flex; justify-content: center; flex-wrap: wrap; gap: 0; margin: 10px 0 6px; }
.pay-row img { width: 38px; height: 24px; margin: 0 3px; }

/* Tabs below product — full width, centered like Impact */
.pdp-tabs {
  max-width: 1000px; margin: 48px auto 0; padding: 0 24px; text-align: center;
}
.tab-nav { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 0; }
.tab-nav button {
  background: none; border: 0; border-bottom: 1px solid #ddd; padding: 14px 8px;
  font-size: 16px; color: #8a8680; font-weight: 400;
}
.tab-nav button.is-on { color: #000; font-weight: 700; border-bottom: 3px solid #000; }
.tab-panel { display: none; padding: 28px 12px 8px; }
.tab-panel.is-on { display: block; }
.tab-panel h3 {
  font-family: var(--heading); font-size: 15px; letter-spacing: .08em;
  text-transform: uppercase; margin: 0 0 12px;
}
.tab-panel p { max-width: 720px; margin: 0 auto; line-height: 1.7; color: #333; }

/* Reviews */
.hc-reviews { background: var(--cream); padding: 48px 0 56px; color: var(--navy); }
.hc-reviews__inner { max-width: 1500px; margin: 0 auto; padding: 0 15px; }
.hc-reviews__header { text-align: center; margin-bottom: 30px; }
.hc-reviews__excellent { display: inline-flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.hc-reviews__excellent-text { font-size: 16px; font-weight: 600; color: #000; }
.hc-reviews__excellent-stars { height: 20px; width: 112px; display: block; }
.hc-reviews__title {
  font-family: var(--heading); font-size: 28px; font-weight: 600; color: #000;
  line-height: 1.15; margin: 0 0 14px;
}
.hc-reviews__track {
  display: flex; gap: 18px; overflow-x: auto; scroll-snap-type: x mandatory;
  scrollbar-width: none; padding-bottom: 4px;
}
.hc-reviews__track::-webkit-scrollbar { display: none; }
.hc-reviews__dots { display: flex; justify-content: center; gap: 8px; margin-top: 22px; }
.hc-reviews__dot {
  width: 8px; height: 8px; padding: 0; border: none; border-radius: 50px;
  background: #c9bda9; cursor: pointer;
}
.hc-reviews__dot.is-active { width: 26px; background: var(--navy); }
.hc-card { flex: 0 0 260px; scroll-snap-align: start; display: flex; flex-direction: column; gap: 10px; }
.hc-card__media { width: 100%; height: 320px; overflow: hidden; border-radius: 4px; }
.hc-card__media img { width: 100%; height: 100%; object-fit: cover; }
.hc-card__top { display: flex; align-items: center; gap: 8px; }
.hc-card__stars { height: 16px; width: 90px; }
.hc-card__verified { font-size: 12px; color: var(--muted); }
.hc-card__headline { font-weight: 700; color: #000; }
.hc-card__body { font-size: 14px; line-height: 1.5; color: #000; }
.hc-card__meta { font-size: 12px; color: var(--muted); }
.hc-reviews__stats {
  display: flex; align-items: center; justify-content: center; gap: 0;
  max-width: 560px; margin: 44px auto 0;
}
.hc-reviews__stat { padding: 0 34px; text-align: center; }
.hc-reviews__stat-div { width: 1px; height: 44px; background: rgba(37,54,84,.25); }
.hc-reviews__stat-num { font-size: 26px; font-weight: 600; color: var(--navy); line-height: 1; }
.hc-reviews__stat-num--brass { color: var(--brass); }
.hc-reviews__stat-label { font-size: 13px; color: #000; margin-top: 8px; }

/* Story slider */
.story { max-width: 1100px; margin: 0 auto; padding: 48px 24px; }
.story-grid {
  display: grid; grid-template-columns: 1.1fr .9fr; gap: 40px; align-items: center;
}
.story-grid[hidden] { display: none !important; }
.story-grid img { width: 100%; border-radius: 12px; object-fit: cover; aspect-ratio: 4/3; }
.story-copy h2 { font-family: var(--heading); font-weight: 500; font-size: 32px; margin: 0 0 14px; }
.story-copy p { line-height: 1.65; color: #333; }
.story-nav { display: flex; gap: 10px; margin-top: 22px; }
.story-nav button {
  width: 40px; height: 40px; border-radius: 50%; border: 1px solid #ddd; background: #fff; font-size: 18px;
}

/* Guarantee band */
.hcg1 { background: var(--navy); padding: 34px 0 50px; text-align: center; color: #fff; }
.hcg1__title { font-family: var(--heading); font-size: 32px; font-weight: 600; margin: 0 0 16px; color: #fff; }
.hcg__kicker { display: inline-block; font-size: 14px; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 12px; }
.hcg1__rule { display: inline-block; width: 48px; height: 2px; background: var(--brass); margin: 0 0 18px; }
.hcg1__copy { font-size: 14px; line-height: 1.5; max-width: 520px; margin: 0 auto; }

/* FAQ */
.faq-wrap { max-width: 820px; margin: 0 auto; padding: 48px 20px 80px; }
.faq-wrap h2 { font-family: var(--heading); text-align: center; font-weight: 500; font-size: 36px; margin: 0 0 24px; }
.faq-card { background: #f3eee6; border-radius: 12px; padding: 8px 8px; }
.faq-card details { border-bottom: 1px solid #e2d9cc; padding: 0 12px; }
.faq-card details:last-child { border-bottom: 0; }
.faq-card summary {
  list-style: none; cursor: pointer; padding: 16px 40px 16px 8px; position: relative; font-size: 15px;
}
.faq-card summary::-webkit-details-marker { display: none; }
.faq-card summary::after {
  content: "▾"; position: absolute; right: 8px; top: 14px;
  width: 22px; height: 22px; border-radius: 50%; background: #e8e0d4;
  display: flex; align-items: center; justify-content: center; font-size: 11px;
}
.faq-card p { margin: 0 8px 16px; color: #444; line-height: 1.6; font-size: 14px; }

/* Size guide modal */
.sg-modal {
  position: fixed; inset: 0; background: rgba(0,0,0,.7); display: flex;
  justify-content: center; align-items: center; z-index: 9999;
  opacity: 0; visibility: hidden; pointer-events: none; padding: 16px;
  transition: opacity .25s, visibility .25s;
}
.sg-modal.show { opacity: 1; visibility: visible; pointer-events: auto; }
.sg-modal__content {
  position: relative; width: min(640px, 100%); max-height: 80vh; background: #fff;
  border-radius: 10px; overflow: auto; padding: 20px;
}
.sg-modal__title { margin: 0 0 14px; font-size: 20px; letter-spacing: 1px; text-transform: uppercase; }
.sg-modal__close { position: absolute; top: 8px; right: 12px; width: 38px; height: 38px; border: 0; background: transparent; font-size: 28px; }
body.modal-open { overflow: hidden; }
.sg-table { width: 100%; border-collapse: collapse; margin: 16px 0; font-size: 14px; }
.sg-table th, .sg-table td { border-bottom: 1px solid var(--line); padding: 10px 8px; text-align: left; }
.sg-table th { font-size: 12px; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); }
.track-form { display: flex; gap: 10px; margin: 20px 0; max-width: 480px; }
.track-form input { flex: 1; padding: 12px 14px; border: 1px solid var(--line); border-radius: 6px; font-size: 15px; }

/* Sticky ATC */
.product-quick-add {
  position: fixed; right: 24px; bottom: 20px; z-index: 50;
  display: none; align-items: center; gap: 12px;
  background: #fff; padding: 10px 12px; border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0,0,0,.18);
}
.product-quick-add.is-on { display: flex; }
.product-quick-add img { width: 64px; height: 64px; object-fit: cover; border-radius: 4px; }
.product-quick-add .qa-title { font-weight: 700; font-size: 14px; }
.product-quick-add .qa-price { font-size: 13px; }
.product-quick-add .qa-price .was { color: var(--muted); text-decoration: line-through; margin-left: 6px; }
.product-quick-add .atc { width: auto; margin: 0; padding: 12px 18px; font-size: 12px; }

/* Drawer */
.drawer-overlay { position: fixed; inset: 0; background: rgba(0,0,0,.45); z-index: 80; display: none; }
.drawer-overlay.is-open { display: block; }
.cart-drawer {
  position: fixed; top: 0; right: 0; height: 100%; width: min(430px, 100%);
  background: var(--cream); z-index: 90; transform: translateX(100%);
  transition: transform .25s ease; display: flex; flex-direction: column;
  box-shadow: -12px 0 40px rgba(0,0,0,.18); overflow: hidden;
}
.cart-drawer.is-open { transform: none; }
.cart-drawer__head {
  display: grid; grid-template-columns: 1fr auto; align-items: center;
  padding: 18px 18px 8px; position: relative; flex-shrink: 0;
}
.cart-drawer__logo { justify-self: center; grid-column: 1 / -1; }
.cart-drawer__logo img { width: 158px; height: auto; }
.cart-drawer__close { position: absolute; right: 10px; top: 14px; font-size: 18px; }
.cart-promo {
  margin: 4px 18px 10px; padding: 8px 12px; text-align: center; flex-shrink: 0;
  border: 1px solid var(--ink); background: var(--peach); font-size: 13px; border-radius: 2px;
}
.cart-promo__div { margin: 0 6px; color: var(--muted); }
.cart-promo .is-on { font-weight: 700; }
.cart-promo .is-on strong { text-decoration: underline; }
.line-extra { font-size: 11px; color: var(--navy); font-weight: 600; margin-top: 2px; }
.cart-save { margin: -4px 0 10px; font-size: 12px; color: var(--navy); text-align: right; }
.cart-drawer .lines { flex: 1 1 auto; min-height: 0; overflow: auto; padding: 4px 18px 8px; }
.cart-empty { text-align: center; color: var(--muted); padding: 28px 8px; }
.line { display: grid; grid-template-columns: 80px 1fr auto; gap: 12px; padding: 14px 0; border-bottom: 1px solid var(--line); align-items: start; }
.line img { width: 80px; height: 80px; object-fit: cover; background: #efe6d8; }
.line h4 { margin: 0 0 4px; font-size: 14px; font-weight: 700; }
.line-price { font-size: 13px; }
.line-price .was { color: var(--muted); text-decoration: line-through; margin-right: 6px; font-size: 12px; }
.line .meta { font-size: 12px; color: var(--muted); margin-top: 4px; }
.line-qty { display: flex; flex-direction: column; align-items: flex-end; gap: 6px; }
.qty-stepper {
  display: inline-flex; align-items: stretch; height: 34px;
  border: 1px solid var(--ink); background: #fff; border-radius: 2px; overflow: hidden;
}
.qty-btn {
  width: 28px; border: 0; background: #fff; color: var(--ink); font-size: 16px; line-height: 1;
  display: inline-flex; align-items: center; justify-content: center; padding: 0;
}
.qty-btn:hover { background: var(--peach); }
.qty-box {
  width: 32px; height: 32px; text-align: center; border: 0; border-inline: 1px solid var(--line);
  background: #fff; font-size: 14px; border-radius: 0; -moz-appearance: textfield; padding: 0;
}
.qty-box::-webkit-outer-spin-button, .qty-box::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.line-remove { background: none; border: 0; padding: 0; font-size: 12px; text-decoration: underline; color: var(--muted); }
.cart-upsell { padding: 10px 18px 6px; flex-shrink: 0; }
.cart-upsell__head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; }
.cart-upsell__head strong { font-size: 14px; }
.cart-upsell__nav { display: flex; gap: 6px; }
.cart-upsell__nav button {
  width: 28px; height: 28px; border-radius: 50%; border: 1px solid #ddd; background: #fff; font-size: 16px;
  display: inline-flex; align-items: center; justify-content: center; line-height: 1;
}
.upsell-card {
  display: grid; grid-template-columns: 72px 1fr; gap: 8px 12px;
  background: var(--peach); padding: 12px; border-radius: 8px; align-items: center;
}
.upsell-card img { width: 72px; height: 72px; object-fit: cover; grid-row: 1 / 3; background: #efe6d8; }
.upsell-title { font-size: 14px; font-weight: 700; }
.upsell-price { font-size: 13px; }
.upsell-price .was { color: var(--muted); text-decoration: line-through; margin-right: 6px; }
.upsell-add {
  grid-column: 1 / -1; justify-self: center; min-width: 110px;
  background: #fff; border: 1px solid var(--ink); padding: 7px 18px; font-size: 12px;
  letter-spacing: .08em; text-transform: uppercase; font-weight: 600; border-radius: 2px;
}
.upsell-add:disabled { opacity: .5; }
.cart-foot { padding: 10px 18px 16px; border-top: 1px solid var(--line); flex-shrink: 0; }
.cart-total-row { display: flex; justify-content: space-between; align-items: baseline; margin: 0 0 10px; font-size: 13px; letter-spacing: .1em; text-transform: uppercase; font-weight: 700; }
.cart-total-prices { display: flex; align-items: baseline; gap: 8px; text-transform: none; letter-spacing: 0; font-weight: 400; }
.cart-total-prices .was { color: var(--muted); text-decoration: line-through; font-size: 13px; }
.cart-total-prices strong { font-size: 18px; font-weight: 700; }
.checkout-btn { width: 100%; margin-top: 4px; gap: 8px; border-radius: 4px; padding: 16px 20px; }
.cart-trust {
  margin: 10px 0 8px; padding: 8px 10px; text-align: center; font-size: 12px;
  border: 1px solid var(--line); background: var(--peach); border-radius: 2px;
}
.cart-trust span { margin: 0 8px; color: var(--muted); }
.cart-pay { margin-top: 8px; }
.cart-note { font-size: 12px; color: var(--muted); margin-top: 8px; text-align: center; }

@media (max-width: 900px) {
  .site-header { grid-template-columns: 44px 1fr auto; }
  .site-header nav { display: none; }
  .site-header .menu-toggle { display: inline-flex; }
  .site-header .logo { justify-self: center; }
  .header-right .locale, .header-right [data-search] { display: none; }
  .grid-products { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .grid-5 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .grid-best { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px 12px; }
  .card-qa { opacity: 1; pointer-events: auto; padding: 8px 12px; font-size: 12px; }
  .cap-banner__content { padding: 20px; }
  .pdp { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr; }
  .thumbs { flex-direction: row; max-height: none; overflow-x: auto; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero img { height: 360px; }
  .cat-slider__track { justify-content: flex-start; gap: 22px; }
  .story-grid { grid-template-columns: 1fr; }
  .product-quick-add { left: 12px; right: 12px; }
  .ww-bundle-title { display: none; }
  .tab-nav { font-size: 13px; }
}
