:root {
  --accent: #FF5C37;
  --ink: #121212;
  --muted: #555;
  --line: #e6e6e6;
  --bg: #fff;
  --max: 140rem;
  --font: Rubik, sans-serif;
}
*, *::before, *::after { box-sizing: border-box; }
html { font-size: 62.5%; }
body {
  margin: 0; background: var(--bg); color: var(--ink);
  font-family: var(--font); font-size: 1.6rem; font-weight: 400; line-height: 1.8;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select { font-family: inherit; }
button { cursor: pointer; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
.page-width {
  max-width: var(--max);
  width: 100%;
  margin: 0 auto;
  padding-left: 5rem;
  padding-right: 5rem;
}

.ticker {
  background: #191919; color: rgba(255,255,255,.9); overflow: hidden; white-space: nowrap;
  padding: 12px 0; height: 42px; display: flex; align-items: center;
}
.ticker-inner { display: inline-flex; animation: ticker 150s linear infinite; }
.ticker-inner span {
  font-size: 16px; font-weight: 400; padding: 0 50px; line-height: 1.125;
}
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

.header-wrapper {
  position: sticky; top: 0; z-index: 40; background: #fff;
}
.site-header {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  grid-template-areas:
    "search logo icons"
    "nav nav nav";
  align-items: center;
  padding-top: 2rem;
  padding-bottom: 2rem;
}
.header-search { grid-area: search; justify-self: start; }
.site-header .logo { grid-area: logo; justify-self: center; }
.site-header .logo img { width: 150px; height: auto; display: block; }
.header-right { grid-area: icons; justify-self: end; display: flex; align-items: center; }
.nav-row {
  grid-area: nav; justify-self: center;
  display: flex; flex-wrap: wrap; justify-content: center;
}
.nav-row a {
  padding: 1.2rem; font-size: 1.4rem; font-weight: 400; letter-spacing: .06rem;
}
.nav-row a:hover, .nav-row a.is-on { color: var(--accent); }
.icon-btn {
  background: none; border: 0; padding: 0; position: relative; color: var(--ink);
  width: 4.4rem; height: 4.4rem; display: grid; place-items: center;
}
.icon-btn svg { width: 2.2rem; height: 2.2rem; }
.cart-count {
  position: absolute; top: .2rem; right: .1rem; background: var(--ink); color: #fff;
  border-radius: 99px; font-size: 1rem; min-width: 1.6rem; height: 1.6rem;
  line-height: 1.6rem; text-align: center;
}
.menu-toggle { display: none; }
.mobile-nav { display: none; position: fixed; inset: 0; background: #fff; z-index: 70; padding: 2.4rem; overflow: auto; }
.mobile-nav.is-open { display: block; }
.mobile-nav a { display: block; padding: 1.4rem 0; border-bottom: 1px solid var(--line); font-size: 1.8rem; }
.search-modal { display: none; position: fixed; inset: 0; background: rgba(0,0,0,.45); z-index: 80; }
.search-modal.is-open { display: grid; place-items: start center; padding: 8rem 1.6rem; }
.search-modal__box { background: #fff; width: min(64rem, 100%); padding: 2rem; border-radius: .6rem; }
.search-modal input { width: 100%; border: 1px solid var(--line); padding: 1.2rem; font-size: 1.6rem; }
.search-hit { display: flex; gap: 1.2rem; align-items: center; padding: 1rem 0; border-bottom: 1px solid var(--line); }
.search-hit img { width: 5.6rem; height: 5.6rem; object-fit: cover; }

.hero img { width: 100%; height: auto; }
.wave { line-height: 0; color: var(--accent); }
.wave svg { width: 100%; height: 4.8rem; display: block; }

.section { padding: 3.6rem 0; }
.section h2 { text-align: center; font-size: 3.6rem; font-weight: 500; margin: 0 0 2.8rem; letter-spacing: -.02em; }
.grid { display: grid; gap: 2.4rem; }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.card { text-align: center; min-width: 0; }
.card a { display: flex; flex-direction: column; height: 100%; }
.card img { width: 100%; aspect-ratio: 1; object-fit: contain; background: #fff; }
.card h3 {
  font-size: 1.5rem; font-weight: 400; margin: 1.2rem 0 .6rem;
  letter-spacing: .04rem; line-height: 1.25; flex: 1;
}
.card .price {
  margin-top: auto; font-size: 1.5rem; font-weight: 700; color: #FF5C37;
}
.price { font-size: 1.5rem; }
.price .was { color: #555; text-decoration: line-through; margin-right: .8rem; font-weight: 400; }
.badge-off {
  display: inline-flex; align-items: center;
  background: var(--accent); color: #fff; font-size: 1.2rem; font-weight: 600;
  padding: 0 .6rem; border-radius: .6rem; margin-left: .8rem; height: 2.3rem; line-height: 2.3rem;
}
.view-all {
  display: inline-block; background: var(--accent); color: #fff; border: 2px solid var(--accent);
  padding: 1.1rem 2.8rem; border-radius: .8rem; font-weight: 700; font-size: 1.4rem;
}
.view-all-wrap { text-align: center; margin-top: 2.4rem; }

.cat-tile { position: relative; overflow: hidden; }
.cat-tile img { width: 100%; aspect-ratio: 3/4; object-fit: cover; }
.cat-tile span { display: block; text-align: center; font-size: 1.8rem; font-weight: 500; padding: 1.2rem 0 0; }

.compare { max-width: 45rem; width: 100%; margin: 0 auto; }
.compare-stage {
  position: relative;
  overflow: hidden;
  user-select: none;
  -webkit-user-select: none;
  touch-action: none;
  container-type: inline-size;
}
.compare-base { width: 100%; height: auto; display: block; }
.compare-overlay {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 50%;
  overflow: hidden;
  z-index: 2;
}
.compare-overlay img {
  width: var(--compare-w, 100cqi);
  max-width: none;
  height: 100%;
  object-fit: cover;
  object-position: top left;
  display: block;
}
.compare-label {
  position: absolute;
  top: 0;
  z-index: 4;
  background: var(--accent);
  color: #fff;
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: .1rem;
  line-height: 1;
  padding: .5rem 1.3rem .6rem;
  pointer-events: none;
}
.compare-label--before { left: 0; }
.compare-label--after { right: 0; }
.compare-line {
  display: block;
  position: absolute;
  z-index: 3;
  top: 0;
  left: 50%;
  height: 100%;
  width: 6px;
  background: #fff;
  transform: translateX(-50%);
  pointer-events: none;
  box-shadow: 0 0 0 1px rgba(0,0,0,.06);
}
.compare-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 4.4rem;
  height: 4.4rem;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,.28);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .2rem;
}
.compare-chevron {
  width: 0;
  height: 0;
  border-style: solid;
}
.compare-chevron--left {
  border-width: 6px 8px 6px 0;
  border-color: transparent #121212 transparent transparent;
}
.compare-chevron--right {
  border-width: 6px 0 6px 8px;
  border-color: transparent transparent transparent #121212;
}
.compare-range {
  position: absolute;
  z-index: 5;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: ew-resize;
  -webkit-appearance: none;
  appearance: none;
  background: transparent;
  touch-action: none;
}
.compare-range::-webkit-slider-runnable-track { height: 100%; background: transparent; }
.compare-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 5rem;
  height: 50rem;
  max-height: 100%;
  background: transparent;
  border: 0;
}
.compare-range::-moz-range-track { height: 100%; background: transparent; border: 0; }
.compare-range::-moz-range-thumb {
  width: 5rem;
  height: 50rem;
  border: 0;
  background: transparent;
}

.trust-track { display: flex; gap: 1.6rem; overflow: auto; padding-bottom: .8rem; }
.trust-track img { width: 16rem; height: 20rem; object-fit: cover; border-radius: 2rem; flex: 0 0 auto; }

.about { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.about h2 { text-align: left; margin-bottom: 1.6rem; }
.about p { line-height: 1.7; color: #333; }

.icon-bar { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2.4rem; text-align: center; }
.icon-bar h3 { margin: .8rem 0 .4rem; font-size: 1.8rem; }
.icon-bar p { margin: 0; color: var(--muted); font-size: 1.4rem; }
.icon-mark { font-size: 2.8rem; color: var(--accent); }

.site-footer { background: var(--accent); color: #fff; padding: 4rem 0 2rem; margin-top: 2.4rem; }
.footer-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 3.2rem; }
.site-footer a { color: #fff; }
.site-footer h2, .site-footer h4 { margin: 0 0 1.2rem; font-weight: 600; font-size: 1.8rem; }
.site-footer li { list-style: none; margin: .8rem 0; font-size: 1.4rem; }
.site-footer ul { margin: 0; padding: 0; }
.site-footer p { margin: .4rem 0; font-size: 1.4rem; }
.footer-copy { text-align: center; margin-top: 2.8rem; font-size: 1.3rem; opacity: .9; }
.footer-pays { display: flex; flex-wrap: wrap; justify-content: center; gap: .6rem; margin-top: 1.6rem; }

.pdp {
  display: grid;
  grid-template-columns: minmax(0, 715px) minmax(0, 535px);
  column-gap: 50px;
  justify-content: center;
  padding: 2.3rem 0 4.8rem;
  align-items: start;
}
.gallery, .gallery-main, .pdp-info { min-width: 0; }
.gallery {
  display: flex; flex-direction: column; gap: 2.4rem;
  position: sticky; top: 152px;
}
.gallery-main img { width: 100%; max-width: 100%; aspect-ratio: 1; object-fit: contain; background: #fff; }
.thumbs-wrap { display: flex; align-items: center; gap: .8rem; }
.thumbs {
  display: flex; flex-direction: row; gap: 1rem; overflow: auto;
  scroll-behavior: smooth; flex: 1; scrollbar-width: none;
}
.thumbs::-webkit-scrollbar { display: none; }
.thumbs button {
  border: 0; background: #fff; padding: 0; flex: 0 0 11.5rem;
  width: 11.5rem; height: 11.5rem; border-radius: 1.2rem; overflow: hidden;
}
.thumbs button.is-on { box-shadow: 0 0 0 1px #121212; }
.thumbs img { width: 11.5rem; height: 11.5rem; object-fit: contain; }
.thumbs-nav {
  flex: 0 0 3.2rem; width: 3.2rem; height: 4.4rem; border: 0; background: none;
  font-size: 2.4rem; color: #121212; line-height: 1;
}

.badge-row { display: flex; align-items: center; gap: 1rem; margin: 0 0 1.2rem; }
.badge-hot {
  background: #000; color: #fff; font-size: 1.1rem; font-weight: 800;
  padding: .1rem .6rem; border-radius: .4rem; letter-spacing: .04em;
}
.badge-sold {
  background: #f2f2f2; color: #333; font-size: 1.2rem; font-weight: 600;
  padding: .1rem .6rem; border-radius: .4rem;
}
.reviews-row { display: flex; align-items: center; gap: .6rem; margin-bottom: 1.2rem; }
.stars { color: #ffc107; font-size: 1.6rem; letter-spacing: .15rem; }
.reviews-count { font-size: 1.4rem; color: #444; font-weight: 500; }

.pdp-info h1 {
  font-size: 2.88rem; font-weight: 400; margin: 0 0 1.5rem;
  line-height: 3.6rem; letter-spacing: .072rem;
}
.price-row { display: flex; align-items: center; flex-wrap: wrap; gap: .8rem; margin-bottom: 1.6rem; }
.price-row #price-now { font-size: 2rem; font-weight: 700; color: #050505; }
.price-row #price-was { font-size: 1.6rem; color: #555; text-decoration: line-through; }
.product-options { margin: 12px 0 0; }
.collection-empty { text-align: center; color: var(--muted); padding: 4rem 0; }
.bundles { margin: 12px 0 0; width: 100%; overflow: visible; }
.bundles h3 {
  margin: 0 0 10px; font-size: 14px; font-weight: 700; letter-spacing: 0; color: #000;
  line-height: 20px;
}
.deal {
  position: relative; width: 100%; margin: 5px 0; cursor: pointer;
  background: #ededed; border-radius: 8px;
  box-shadow: inset 0 0 0 1px #000; overflow: visible;
}
.deal:has(.deal-pop):not(.is-on) { min-height: 86px; }
.deal:has(.deal-pop):not(.is-on) .deal-wrap { padding-top: 16px; }
.deal.is-on { background: #fff; box-shadow: inset 0 0 0 2px #000; }
.deal-wrap { padding: 10px 20px; }
.deal-main {
  display: flex; align-items: center; gap: 18px; min-height: 55px;
}
.deal-radio {
  flex: 0 0 20px; width: 20px; height: 20px; border-radius: 50%;
  background: #fff; border: 3px solid #fff;
  box-shadow: 0 0 0 2px rgba(0,0,0,.3);
}
.deal.is-on .deal-radio {
  background: #000; box-shadow: 0 0 0 2px #000;
}
.deal-copy { flex: 1; min-width: 0; }
.deal-first { display: flex; align-items: center; gap: 8px; min-height: 28px; }
.deal-copy strong { font-size: 20px; font-weight: 700; line-height: 28px; }
.deal .sub { font-size: 14px; color: #555; font-weight: 400; line-height: 20px; }
.deal-label {
  display: none; align-items: center; justify-content: center;
  background: #d9d9d9; color: #000; font-size: 12px; font-weight: 400;
  padding: 4px 8px; border-radius: 8px; height: 25px; line-height: 1; white-space: nowrap;
}
.deal[data-rate]:not([data-rate="0"]) .deal-label { display: inline-flex; }
.deal-prices { text-align: right; flex: 0 0 auto; }
.deal-prices [data-deal-price] { font-size: 20px; font-weight: 700; display: block; line-height: 28px; color: #000; }
.deal .was { color: #555; text-decoration: line-through; font-size: 14px; display: block; line-height: 20px; }
.deal-pop {
  position: absolute; top: -27px; right: -20px; z-index: 3;
  width: 102px; height: 60px; pointer-events: none;
}
.deal-pop svg { display: block; }
.deal-variants { display: none; padding-top: 8px; }
.deal.is-on .deal-variants { display: block; }
.deal-var-names {
  display: flex; gap: 7px; margin: 3px 0 3px 47px; font-size: 12px; color: #555; line-height: 17px;
}
.deal-var-names span { flex: 1; min-width: 0; }
.deal-var-row { display: flex; align-items: center; }
.deal-var-row + .deal-var-row { margin-top: 7px; }
.deal-var-row img {
  width: 40px; height: 40px; object-fit: contain; border-radius: 4px; margin-right: 7px; background: #fff;
}
.deal-var-selects { display: flex; gap: 7px; flex: 1; min-width: 0; }
.opt-select, .deal-var-selects select {
  flex: 1; min-width: 0; height: 31px;
  padding: 7px 25px 7px 7px; border: 0; border-radius: 4px;
  background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23111' stroke-width='1.4' fill='none'/%3E%3C/svg%3E") no-repeat right 8px center;
  font-size: 14px; color: #000; appearance: none; box-shadow: inset 0 0 0 1px #ddd;
}
.atc {
  width: 100%; background: var(--accent); color: #fff; border: 0; border-radius: .8rem;
  height: 4.9rem; padding: 0 3rem; font-size: 1.9rem; font-weight: 700; margin-top: 1.6rem;
}
.payment-badges-block { margin: 15px 0; }
.payment-badges {
  display: flex; flex-wrap: wrap; justify-content: center; align-items: center;
  list-style: none; margin: 0; padding: 0; gap: 0;
}
.payment-badges li, .list-payment__item {
  list-style: none; margin: 0; padding: 5px; line-height: 0;
}
.payment-badges svg, .payment-badges .icon, .footer-pays svg {
  width: 38px; height: 24px; display: block;
}
.footer-pays { display: flex; flex-wrap: wrap; justify-content: center; gap: 0; margin-top: 1.6rem; }
.footer-pays .payment-badges { justify-content: center; }

.ship-acc {
  margin-top: 20px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  padding: 0;
}
.ship-acc summary {
  cursor: pointer; list-style: none; display: flex; align-items: center; justify-content: space-between;
  padding: 14px 0; font-size: 16px; font-weight: 600;
}
.ship-acc summary::-webkit-details-marker { display: none; }
.ship-acc .summary__title { display: flex; align-items: center; gap: 10px; }
.ship-acc .summary__title svg { width: 20px; height: 20px; flex: 0 0 20px; }
.ship-acc .icon-caret { width: 10px; height: 6px; }
.ship-acc[open] .icon-caret { transform: rotate(180deg); }
.ship-acc p { margin: 0 0 14px; color: var(--ink); font-size: 16px; }
.returns-note { margin: .8rem 0 0; font-size: 1.5rem; color: #333; }

.ship-widget { width: 100%; max-width: 46rem; margin: 2.8rem auto 0; }
.ship-graphic { position: relative; display: flex; justify-content: space-between; align-items: center; height: 5.6rem; }
.ship-graphic::before {
  content: ""; position: absolute; left: 16%; right: 16%; top: 50%; height: 2px; background: #1a1a1a;
}
.ship-circle {
  width: 4.8rem; height: 4.8rem; border-radius: 99px; background: #1a1a1a; color: #fff;
  display: grid; place-items: center; position: relative; z-index: 1;
}
.ship-circle svg { width: 2.2rem; height: 2.2rem; }
.ship-labels { display: flex; justify-content: space-between; margin-top: .9rem; }
.ship-labels span { width: 33%; text-align: center; font-size: 1.3rem; font-weight: 600; }

.desc { margin: 20px 0 0; line-height: 1.65; text-align: center; width: 100%; }
.desc img { margin: 0 auto; width: 100%; max-width: 100%; height: auto; display: block; }
.desc p { margin: 0; }
.faq { margin: 4rem 0; }
.faq h2 { text-align: center; }
.faq details { border-bottom: 1px solid var(--line); padding: 1.4rem 0; }
.faq summary { cursor: pointer; font-weight: 600; font-size: 1.6rem; }

.collection-head { padding: 2.8rem 0 .8rem; text-align: center; }
.collection-head h1 { margin: 0 0 .8rem; font-size: 3.6rem; font-weight: 500; }
.rte { line-height: 1.7; }
.rte h1, .rte h2 { margin: 1.4em 0 .5em; }
.page-main { padding: 2.8rem 0 6rem; max-width: 86rem; }

.product-video-carousel { width: 100%; margin: 14px 0; }
.product-video-carousel__wrapper { position: relative; width: 100%; }
.product-video-carousel__viewport {
  width: 100%; overflow-x: auto; overflow-y: hidden; scroll-behavior: smooth;
  scroll-snap-type: x mandatory; scrollbar-width: none;
}
.product-video-carousel__viewport::-webkit-scrollbar { display: none; }
.product-video-carousel__track {
  display: grid; grid-auto-flow: column; grid-auto-columns: calc((100% - 20px) / 3);
  gap: 10px; width: 100%;
}
.product-video-carousel__card {
  position: relative; width: 100%; aspect-ratio: 9 / 16; overflow: hidden;
  border-radius: 12px; background: #f2f2f2; scroll-snap-align: start;
}
.product-video-carousel__card video { display: block; width: 100%; height: 100%; object-fit: cover; }
.product-video-carousel__arrow {
  position: absolute; top: 50%; z-index: 5; display: flex; width: 30px; height: 30px;
  padding: 0; align-items: center; justify-content: center; border: 0; border-radius: 99px;
  background: rgba(26,26,26,.72); color: #fff; transform: translateY(-50%);
}
.product-video-carousel__arrow svg { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 2; }
.product-video-carousel__arrow--prev { left: 8px; }
.product-video-carousel__arrow--next { right: 8px; }

.ship-widget-wrapper { width: 100%; max-width: 460px; margin: 20px auto; }
.ship-widget-graphic { position: relative; display: flex; justify-content: space-between; align-items: center; height: 50px; }
.ship-widget-line-svg { position: absolute; top: 50%; left: 0; transform: translateY(-50%); width: 100%; height: 2px; }
.ship-widget-node { position: relative; z-index: 2; width: 33.33%; display: flex; justify-content: center; }
.ship-widget-circle {
  width: 48px; height: 48px; border-radius: 50%; background: #1A1A1A; color: #fff;
  display: flex; align-items: center; justify-content: center; box-shadow: 0 2px 8px rgba(0,0,0,.12);
}
.ship-widget-circle svg { width: 24px; height: 24px; }
.ship-widget-text-row { display: flex; justify-content: space-between; margin-top: 9px; }
.ship-widget-text-col { width: 33.33%; text-align: center; }
.ship-widget-label { font-size: 12px; font-weight: 600; color: #1A1A1A; }

.cart-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,.45); z-index: 90; }
.cart-overlay.is-open { display: block; }
.cart-drawer {
  position: fixed; top: 0; right: 0; bottom: 0; width: min(400px, 100%);
  background: #fff; z-index: 91; transform: translateX(100%); transition: transform .25s;
  display: flex; flex-direction: column; color: #050505;
}
.cart-drawer.is-open { transform: none; }
.cart-head { display: flex; justify-content: space-between; align-items: center; padding: 14px 16px; font-size: 18px; font-weight: 600; color: #050505; }
.cart-reserve { background: #050505; color: #fff; text-align: center; padding: 10px 12px; font-size: 16px; }
.cart-reserve b { font-weight: 700; }
.cart-ship { display: none !important; }
.cart-lines { flex: 1; overflow: auto; padding: 8px 16px; }
.cart-empty { color: var(--muted); text-align: center; padding: 4rem 0; font-size: 16px; }
.line { display: grid; grid-template-columns: 80px 1fr; gap: 12px; padding: 14px 0; border-bottom: 1px solid #eee; align-items: start; }
.line img { width: 80px; height: 80px; object-fit: contain; background: #fff; }
.line h4 { margin: 0 0 4px; font-size: 16px; font-weight: 600; line-height: 1.3; color: #050505; }
.line .meta { font-size: 14px; color: #666; margin-bottom: 6px; line-height: 1.35; }
.line-price { display: flex; flex-wrap: wrap; align-items: baseline; gap: 6px; margin: 0 0 10px; }
.line-price .now { font-size: 16px; font-weight: 700; color: #050505; }
.line-price .was { font-size: 14px; color: #555; font-weight: 400; text-decoration: line-through; }
.line-price .save { font-size: 14px; font-weight: 600; color: #FF5C37; }
.line-tools { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.line-deal {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 26px; padding: 3px 10px; border-radius: 99px;
  background: #f2f2f2; color: #1a1a1a; font-size: 12px; font-weight: 700;
}
.qty-stepper { display: flex; align-items: center; gap: 0; border: 1px solid #ddd; width: fit-content; }
.qty-btn { width: 30px; height: 30px; border: 0; background: #fff; font-size: 16px; }
.qty-box { width: 32px; text-align: center; border: 0; font-size: 15px; }
.line-remove { display: none; }
.cart-upsell { padding: 12px 16px 10px; border-top: 1px solid #eee; }
.cart-upsell h3 { margin: 0 0 8px; font-size: 15px; font-weight: 500; line-height: 1.3; }
.upsell-carousel { position: relative; padding: 0 22px; }
.upsell-track {
  display: flex; overflow-x: auto; scroll-snap-type: x mandatory;
  scroll-behavior: smooth; scrollbar-width: none;
}
.upsell-track::-webkit-scrollbar { display: none; }
.upsell-card {
  flex: 0 0 100%; scroll-snap-align: start;
  display: grid; grid-template-columns: 64px 1fr auto; gap: 9px; align-items: center;
  min-height: 74px; margin: 0;
}
.upsell-card img { width: 64px; height: 64px; object-fit: contain; }
.upsell-title { font-size: 15px; font-weight: 600; line-height: 1.25; }
.upsell-price { font-size: 14px; margin-top: 3px; }
.upsell-add {
  background: var(--accent); color: #fff; border: 0; border-radius: 5px;
  min-width: 52px; max-width: 68px; height: 32px; padding: 4px 10px;
  font-size: 13px; font-weight: 600;
}
.upsell-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 22px; height: 22px; padding: 0; border: 0; background: none;
  color: #111; display: grid; place-items: center; z-index: 2;
}
.upsell-nav svg { width: 14px; height: 14px; }
.upsell-nav--prev { left: 0; }
.upsell-nav--next { right: 0; }
.upsell-nav[hidden] { display: none; }
.cart-addon {
  display: grid; grid-template-columns: 36px 1fr auto auto; align-items: center;
  gap: 10px; padding: 12px; min-height: 78px; border-top: 1px solid #eee;
  font-size: 15px; background: #fff;
}
.cart-addon svg { flex: 0 0 36px; }
.prot-copy { display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.cart-addon strong { font-size: 15px; font-weight: 700; color: #1a1a1a; }
.prot-copy small { font-size: 13px; line-height: 1.35; color: #666; }
.cart-addon .prot-price { color: #FF5A3C; font-weight: 700; font-size: 15px; margin-right: 4px; }
.cart-addon input[type="checkbox"] {
  appearance: none; width: 40px; height: 22px; border-radius: 99px;
  background: #ddd; position: relative; border: 0; cursor: pointer; flex: 0 0 40px;
}
.cart-addon input[type="checkbox"]::after {
  content: ""; position: absolute; top: 2px; left: 2px; width: 18px; height: 18px;
  border-radius: 50%; background: #fff; transition: transform .15s;
}
.cart-addon input[type="checkbox"]:checked { background: #34A7F2; }
.cart-addon input[type="checkbox"]:checked::after { transform: translateX(18px); }
.cart-foot { padding: 12px 16px 16px; border-top: 1px solid #eee; }
.cart-save-row { display: flex; justify-content: space-between; font-size: 18px; font-weight: 700; color: #FF5A3C; margin-bottom: 6px; }
.cart-disc-row { display: flex; align-items: center; flex-wrap: wrap; gap: 6px; font-size: 14px; font-weight: 600; color: #1a1a1a; margin-bottom: 8px; }
.disc-tag {
  display: inline-flex; align-items: center; padding: 2px 8px; border-radius: 99px;
  background: #f2f2f2; font-size: 12px; font-weight: 700;
}
.cart-total-row { display: flex; justify-content: space-between; font-weight: 700; margin-bottom: 10px; font-size: 17px; color: #111; }
.cart-total-row .was { color: #999; font-weight: 400; text-decoration: line-through; margin-right: 6px; }
.checkout-btn {
  width: 100%; background: #FF5C37; color: #fff; border: 0; border-radius: 6px;
  height: 50px; font-weight: 700; font-size: 17px;
}
.cart-trust { display: block; width: 100%; height: auto; margin-top: 12px; }
.checkout { max-width: 72rem; padding: 2.8rem 0 6rem; }
.checkout label { display: block; margin: 1.2rem 0 .4rem; font-size: 1.3rem; }
.checkout input, .checkout select { width: 100%; padding: 1rem; border: 1px solid var(--line); border-radius: .6rem; }

@media (max-width: 989px) {
  .grid-4, .grid-3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .icon-bar, .about, .footer-grid { grid-template-columns: 1fr 1fr; }
  .page-width { padding-left: 2rem; padding-right: 2rem; }
  .pdp { grid-template-columns: 1fr; column-gap: 0; }
  .gallery { position: static; }
  .site-header {
    grid-template-areas: "menu logo icons";
    grid-template-columns: 1fr auto 1fr;
    padding: 1.2rem 0;
  }
  .menu-toggle { display: grid; grid-area: menu; justify-self: start; }
  .header-search { display: grid; grid-area: menu; justify-self: start; margin-left: 4.4rem; }
  .nav-row { display: none; }
}
@media (max-width: 749px) {
  html { font-size: 56.25%; }
  .ticker { padding: .9rem 0; }
  .grid { gap: 2rem; }
  .grid-4, .grid-3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .icon-bar, .about, .pdp, .footer-grid { grid-template-columns: 1fr; }
  .card h3 { font-size: 2.2rem; letter-spacing: .04rem; }
  .card .price { font-size: 1.8rem; }
  .section h2, .collection-head h1, .pdp-info h1 { font-size: 2.6rem; line-height: 1.25; }
  .thumbs button, .thumbs img { width: 9rem; height: 9rem; flex-basis: 9rem; }
  .compare-handle { width: 4.8rem; height: 4.8rem; }
}
