:root {
  --ink: #080808;
  --paper: #f5f5f2;
  --white: #fff;
  --red: #d71920;
  --muted: #6f6f69;
  --line: rgba(8, 8, 8, .15);
  --head: "Manrope", sans-serif;
  --body: "DM Sans", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--paper); color: var(--ink); font-family: var(--body); }
body.cart-open { overflow: hidden; }
button, input { font: inherit; }
button, a { color: inherit; }
button { cursor: pointer; }
a { text-decoration: none; }
[hidden] { display: none !important; }

.pp-skip {
  position: fixed;
  z-index: 100;
  top: 8px;
  left: 8px;
  padding: 12px 16px;
  background: var(--ink);
  color: var(--white);
  transform: translateY(-160%);
}
.pp-skip:focus { transform: none; }

.pp-announcement {
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: var(--ink);
  color: var(--white);
  font: 700 8px var(--head);
  letter-spacing: .16em;
  text-transform: uppercase;
}

.pp-header {
  position: sticky;
  top: 0;
  z-index: 30;
  height: 68px;
  padding: 0 clamp(18px, 3vw, 48px);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  border-bottom: 1px solid var(--line);
  background: rgba(245, 245, 242, .95);
  backdrop-filter: blur(16px);
}
.pp-brand { width: 46px; height: 46px; overflow: hidden; }
.pp-brand img { width: 100%; height: 100%; display: block; object-fit: cover; }
.pp-header nav { display: flex; gap: 30px; font: 700 10px var(--head); letter-spacing: .08em; text-transform: uppercase; }
.pp-header-actions { justify-self: end; display: flex; align-items: center; gap: 10px; }
.pp-header button { min-height: 38px; border: 0; background: transparent; font: 700 10px var(--head); text-transform: uppercase; }
.pp-cart-trigger { display: flex; align-items: center; gap: 9px; }
.pp-cart-trigger span {
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
}

.pp-breadcrumbs {
  width: min(1440px, 94vw);
  margin: 0 auto;
  padding: 22px 0;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 10px;
}

.pp-mobile-summary {
  display: none;
}
.pp-breadcrumbs a:hover { color: var(--red); }

.pp-product {
  width: min(1440px, 94vw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(390px, .88fr);
  gap: clamp(34px, 5vw, 82px);
  align-items: start;
}

.pp-gallery-layout { display: grid; grid-template-columns: 92px minmax(0, 1fr); gap: 12px; }
.pp-thumbnails { display: grid; align-content: start; gap: 10px; }
.pp-thumb {
  position: relative;
  aspect-ratio: 1 / 1.15;
  padding: 0;
  overflow: hidden;
  border: 1px solid transparent;
  background: var(--white);
}
.pp-thumb.active { border-color: var(--ink); }
.pp-thumb img { width: 100%; height: 100%; display: block; object-fit: contain; }
.pp-thumb span {
  position: absolute;
  left: 6px;
  bottom: 6px;
  padding: 5px 6px;
  background: rgba(255, 255, 255, .92);
  font: 700 7px var(--head);
  text-transform: uppercase;
}
.pp-main-image {
  position: relative;
  min-height: 720px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: var(--white);
}
.pp-main-image img {
  width: calc(100% - 56px);
  height: calc(100% - 56px);
  max-height: 760px;
  display: block;
  object-fit: contain;
  transition: transform .45s cubic-bezier(.2, .8, .2, 1);
}
.pp-gallery.zoomed .pp-main-image img { transform: scale(1.32); }
.pp-image-label {
  position: absolute;
  top: 18px;
  left: 18px;
  padding: 9px 11px;
  background: var(--white);
  font: 800 8px var(--head);
  letter-spacing: .08em;
  text-transform: uppercase;
}
.pp-zoom {
  position: absolute;
  right: 18px;
  bottom: 18px;
  min-height: 42px;
  padding: 0 14px;
  border: 0;
  background: rgba(255, 255, 255, .94);
  font: 800 8px var(--head);
  letter-spacing: .08em;
  text-transform: uppercase;
}

.pp-buy { position: sticky; top: 96px; padding: 18px 0 70px; }
.pp-eyebrow { margin: 0 0 15px; color: var(--red); font: 800 9px var(--head); letter-spacing: .18em; text-transform: uppercase; }
.pp-title-row { display: flex; justify-content: space-between; gap: 24px; align-items: start; }
.pp-title-row h1 { margin: 0; font: 600 clamp(48px, 5vw, 76px)/.9 var(--head); letter-spacing: -.075em; }
.pp-price { white-space: nowrap; font: 700 18px var(--head); }
.pp-sub { margin: 17px 0 0; color: var(--muted); font-size: 12px; text-transform: uppercase; letter-spacing: .08em; }
.pp-description { max-width: 610px; margin: 28px 0; color: #44443f; font-size: 15px; line-height: 1.75; }
.pp-status {
  margin: 0 0 28px;
  padding: 13px 15px;
  display: flex;
  gap: 10px;
  align-items: center;
  border: 1px solid var(--line);
  font-size: 10px;
}
.pp-status i { width: 7px; height: 7px; border-radius: 50%; background: var(--red); }
.pp-status strong { color: var(--red); font-weight: 900; letter-spacing: .08em; }

.pp-option-group { margin-top: 25px; }
.pp-option-label {
  margin: 0 0 11px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font: 800 10px var(--head);
  letter-spacing: .08em;
  text-transform: uppercase;
}
.pp-option-label span { color: var(--muted); font-weight: 600; }
.pp-options { display: flex; flex-wrap: wrap; gap: 8px; }
.pp-option, .pp-color {
  min-width: 52px;
  min-height: 44px;
  padding: 0 15px;
  border: 1px solid var(--line);
  background: var(--white);
  font: 700 10px var(--head);
}
.pp-option.active, .pp-color.active { border-color: var(--ink); background: var(--ink); color: var(--white); }
.pp-color { display: flex; gap: 9px; align-items: center; }
.pp-swatch { width: 16px; height: 16px; border: 1px solid #8d8d87; border-radius: 50%; background: white; }
.pp-swatch-zwart { background: #090909; border-color: #090909; }

.pp-selection {
  margin-top: 27px;
  padding: 14px 0;
  display: flex;
  justify-content: space-between;
  border-block: 1px solid var(--line);
  font-size: 11px;
}
.pp-selection span { color: var(--muted); }
.pp-buy-row { margin-top: 16px; display: grid; grid-template-columns: 1fr auto; gap: 9px; }
.pp-add {
  min-height: 58px;
  padding: 0 20px;
  border: 0;
  background: var(--ink);
  color: var(--white);
  font: 800 11px var(--head);
  letter-spacing: .06em;
  text-transform: uppercase;
}
.pp-add:hover { background: var(--red); }
.pp-favorite {
  min-width: 112px;
  border: 1px solid var(--ink);
  background: transparent;
  font: 800 10px var(--head);
  text-transform: uppercase;
}
.pp-favorite span { margin-right: 7px; font-size: 18px; }
.pp-favorite.active { background: var(--red); border-color: var(--red); color: var(--white); }
.pp-share { margin-top: 13px; padding: 0; border: 0; background: transparent; font: 700 10px var(--head); text-decoration: underline; }

.pp-assurance {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
}
.pp-assurance span { min-height: 58px; padding: 14px; display: grid; place-items: center; text-align: center; border-right: 1px solid var(--line); font-size: 8px; line-height: 1.5; text-transform: uppercase; }
.pp-assurance span:last-child { border: 0; }
.pp-details { margin-top: 28px; border-top: 1px solid var(--line); }
.pp-details details { border-bottom: 1px solid var(--line); }
.pp-details summary { padding: 20px 0; display: flex; justify-content: space-between; list-style: none; cursor: pointer; font: 700 12px var(--head); }
.pp-details summary::-webkit-details-marker { display: none; }
.pp-details summary::after { content: "+"; font-size: 18px; }
.pp-details details[open] summary::after { content: "−"; }
.pp-details p { margin: 0; padding: 0 0 22px; color: var(--muted); font-size: 12px; line-height: 1.7; }

.pp-feature-section { margin-top: 110px; padding: 100px max(3vw, 20px); display: grid; grid-template-columns: .8fr 1.2fr; gap: 9vw; background: var(--ink); color: var(--white); }
.pp-feature-section h2 { margin: 0; font: 600 clamp(50px, 7vw, 98px)/.88 var(--head); letter-spacing: -.075em; }
.pp-feature-section h2 em { color: var(--red); font-style: normal; }
.pp-feature-section ul { margin: 0; padding: 0; list-style: none; border-top: 1px solid rgba(255, 255, 255, .25); }
.pp-feature-section li { min-height: 80px; display: flex; align-items: center; gap: 24px; border-bottom: 1px solid rgba(255, 255, 255, .25); font: 600 16px var(--head); }
.pp-feature-section li span { color: var(--red); font-size: 10px; }

.pp-related { padding: 110px max(3vw, 20px) 130px; }
.pp-section-heading { display: flex; justify-content: space-between; align-items: end; margin-bottom: 35px; }
.pp-section-heading h2 { margin: 0; font: 600 clamp(48px, 6vw, 82px)/.9 var(--head); letter-spacing: -.075em; }
.pp-section-heading a { padding-bottom: 5px; border-bottom: 1px solid; font: 700 10px var(--head); text-transform: uppercase; }
.pp-related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.pp-related-card { min-width: 0; background: var(--white); border: 1px solid rgba(8, 8, 8, .08); }
.pp-related-card > div { aspect-ratio: 1 / 1.12; display: grid; place-items: center; overflow: hidden; background: var(--white); }
.pp-related-card img { width: calc(100% - 28px); height: calc(100% - 28px); display: block; object-fit: contain; transition: transform .4s; }
.pp-related-card:hover img { transform: scale(1.025); }
.pp-related-card p { margin: 16px 16px 7px; color: var(--red); font: 800 8px var(--head); letter-spacing: .1em; text-transform: uppercase; }
.pp-related-card h3 { margin: 0 16px 6px; font: 600 18px var(--head); }
.pp-related-card > span { margin: 0 16px; font-size: 12px; }
.pp-related-card b { margin: 18px 16px; display: block; font: 800 9px var(--head); text-transform: uppercase; }

.pp-footer { padding: 58px max(3vw, 20px) 28px; background: var(--ink); color: var(--white); }
.pp-footer-row { display: flex; justify-content: space-between; gap: 30px; }
.pp-footer-brand { font: 800 28px var(--head); }
.pp-footer-links { display: flex; flex-wrap: wrap; gap: 32px; font-size: 11px; }
.pp-footer-bottom { margin-top: 48px; padding-top: 20px; border-top: 1px solid rgba(255, 255, 255, .2); color: #92928e; font-size: 9px; text-transform: uppercase; }

.pp-cart-backdrop { position: fixed; inset: 0; z-index: 70; background: rgba(0, 0, 0, .48); opacity: 0; pointer-events: none; transition: opacity .25s; }
.pp-cart-backdrop.open { opacity: 1; pointer-events: auto; }
.pp-cart-drawer { position: fixed; z-index: 71; top: 0; right: 0; bottom: 0; width: min(470px, 100vw); display: flex; flex-direction: column; background: var(--white); transform: translateX(100%); transition: transform .3s cubic-bezier(.2, .8, .2, 1); }
.pp-cart-drawer.open { transform: none; }
.pp-cart-head { padding: 28px; display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid var(--line); }
.pp-cart-head h2 { margin: 0; font: 600 34px var(--head); letter-spacing: -.05em; }
.pp-cart-head button { width: 40px; height: 40px; border: 0; background: transparent; font-size: 28px; }
.pp-cart-items { flex: 1; overflow: auto; }
.pp-cart-empty { margin: auto; padding: 40px; text-align: center; color: var(--muted); }
.pp-cart-item { padding: 18px 24px; display: grid; grid-template-columns: 78px 1fr auto; gap: 14px; align-items: center; border-bottom: 1px solid var(--line); }
.pp-cart-item img { width: 78px; height: 92px; object-fit: contain; background: var(--white); }
.pp-cart-item h3 { margin: 0 0 5px; font: 700 12px var(--head); }
.pp-cart-item p { margin: 0 0 12px; color: var(--muted); font-size: 9px; }
.pp-cart-item > div:last-child { align-self: stretch; display: flex; flex-direction: column; justify-content: space-between; text-align: right; font-size: 10px; }
.pp-quantity { display: flex; align-items: center; gap: 10px; }
.pp-quantity button { width: 25px; height: 25px; border: 1px solid var(--line); background: transparent; }
.pp-remove { padding: 0; border: 0; background: transparent; font-size: 8px; text-decoration: underline; }
.pp-cart-footer { padding: 24px; border-top: 1px solid var(--line); }
.pp-cart-total { margin-bottom: 17px; display: flex; justify-content: space-between; font-size: 14px; }
.pp-checkout { width: 100%; min-height: 55px; border: 0; background: var(--red); color: var(--white); font: 800 10px var(--head); text-transform: uppercase; }
.pp-cart-footer small { margin-top: 10px; display: block; color: var(--muted); text-align: center; font-size: 8px; }

.pp-demo { width: min(500px, 92vw); padding: 0; border: 0; }
.pp-demo::backdrop { background: rgba(0, 0, 0, .66); }
.pp-demo-card { padding: 45px; text-align: center; }
.pp-demo-card h2 { margin: 10px 0; font: 600 42px var(--head); letter-spacing: -.06em; }
.pp-demo-card p { color: var(--muted); font-size: 13px; line-height: 1.65; }
.pp-demo-card button { min-height: 48px; padding: 0 20px; border: 0; background: var(--ink); color: var(--white); }

/* Accessible touch targets across the full pre-launch product journey. */
.pp-header a,
.pp-header button,
.pp-zoom,
.pp-favorite,
.pp-share,
.pp-details summary,
.pp-section-heading a,
.pp-cart-head button,
.pp-quantity button {
  min-height: 44px;
}

.pp-header button,
.pp-cart-head button,
.pp-quantity button {
  min-width: 44px;
}

.pp-quantity button {
  width: 44px;
  height: 44px;
}

.pp-breadcrumbs a,
.pp-footer-links a,
.pp-footer-links button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.pp-footer-links button {
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  cursor: pointer;
}

.pp-toast { position: fixed; z-index: 90; left: 50%; bottom: 24px; padding: 13px 20px; background: var(--red); color: var(--white); font: 700 10px var(--head); opacity: 0; transform: translate(-50%, 20px); transition: .22s; pointer-events: none; }
.pp-toast.show { opacity: 1; transform: translate(-50%, 0); }
.pp-mobile-buy { display: none; }

@media (max-width: 900px) {
  .pp-header { grid-template-columns: 1fr auto; }
  .pp-header nav { display: none; }
  .pp-product { grid-template-columns: 1fr; }
  .pp-buy { position: static; padding-top: 18px; }
  .pp-main-image { min-height: 620px; }
  .pp-feature-section { grid-template-columns: 1fr; gap: 50px; }
}

@media (max-width: 620px) {
  body { padding-bottom: 76px; }
  .pp-announcement { font-size: 6px; }
  .pp-header { height: 62px; padding-inline: 16px; }
  .pp-brand { width: 42px; height: 42px; }
  .pp-header-actions > a { display: none; }
  .pp-breadcrumbs { width: calc(100% - 32px); padding-block: 16px; }
  .pp-product { width: 100%; gap: 8px; }
  .pp-gallery-layout { display: flex; flex-direction: column-reverse; gap: 8px; }
  .pp-thumbnails { padding: 0 16px; grid-template-columns: repeat(2, 74px); }
  .pp-main-image { min-height: clamp(390px, 112vw, 470px); }
  .pp-main-image img { width: calc(100% - 30px); height: calc(100% - 30px); }
  .pp-buy { padding: 34px 20px 70px; }
  .pp-title-row { display: block; }
  .pp-price { margin-top: 14px; display: block; }
  .pp-buy-row { grid-template-columns: 1fr; }
  .pp-favorite { min-height: 48px; }
  .pp-assurance { grid-template-columns: 1fr; }
  .pp-assurance span { border-right: 0; border-bottom: 1px solid var(--line); }
  .pp-assurance span:last-child { border-bottom: 0; }
  .pp-feature-section { margin-top: 0; padding: 75px 22px; }
  .pp-feature-section li { font-size: 13px; }
  .pp-related { padding: 75px 16px 90px; }
  .pp-section-heading { display: block; }
  .pp-section-heading a { margin-top: 18px; display: inline-block; }
  .pp-related-grid { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; }
  .pp-related-card { min-width: 82vw; scroll-snap-align: start; }
  .pp-footer-row { display: block; }
  .pp-footer-links { margin-top: 35px; }
  .pp-mobile-buy {
    position: fixed;
    z-index: 50;
    left: 0;
    right: 0;
    bottom: 0;
    min-height: 68px;
    padding: 8px 10px;
    display: grid;
    grid-template-columns: 1fr 1.45fr;
    gap: 8px;
    background: rgba(255, 255, 255, .96);
    border-top: 1px solid var(--line);
    backdrop-filter: blur(12px);
  }
  .pp-mobile-buy div { padding-left: 8px; display: flex; flex-direction: column; justify-content: center; font-size: 9px; }
  .pp-mobile-buy strong { margin-bottom: 2px; font-size: 13px; }
  .pp-mobile-buy button { border: 0; background: var(--ink); color: var(--white); font: 800 9px var(--head); text-transform: uppercase; }
}

/* Product-page conversion layout: gallery, proof, choices and bundles */
.pp-benefits {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin: 22px 0 24px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.pp-benefits > div {
  min-height: 96px;
  padding: 14px 10px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  text-align: center;
}

.pp-benefits > div + div { border-left: 1px solid var(--line); }
.pp-benefits span { font-size: 22px; line-height: 1; }
.pp-benefits strong { font: 800 9px/1.2 var(--head); letter-spacing: .04em; text-transform: uppercase; }
.pp-benefits small { color: var(--muted); font-size: 10px; line-height: 1.25; }

.pp-choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 20px;
  margin: 24px 0 0;
}

.pp-choice-grid .pp-option-group { margin: 0; }
.pp-choice-grid [data-model-group] { grid-column: 1 / -1; }

.pp-bundle { margin: 26px 0 0; }
.pp-bundle-heading { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; margin-bottom: 10px; }
.pp-bundle-heading > span { font: 800 11px var(--head); letter-spacing: .08em; text-transform: uppercase; }
.pp-bundle-heading small { color: var(--muted); font-size: 10px; text-align: right; }
.pp-bundle-options { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 8px; }
.pp-bundle-option {
  min-height: 128px;
  padding: 14px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 5px;
  border: 1px solid var(--line);
  border-radius: 2px;
  background: var(--white);
  color: var(--ink);
  text-align: left;
  cursor: pointer;
}
.pp-bundle-option:hover { border-color: var(--ink); }
.pp-bundle-option.active { border-color: var(--red); box-shadow: inset 0 0 0 1px var(--red); }
.pp-bundle-option strong { font: 800 11px var(--head); letter-spacing: .06em; text-transform: uppercase; }
.pp-bundle-option b { margin-top: auto; font: 800 24px/1 var(--head); letter-spacing: -.04em; }
.pp-bundle-option small { color: var(--muted); font-size: 10px; }

.pp-trust-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin: 15px 0 0;
  color: var(--ink);
  font-size: 10px;
  line-height: 1.3;
  text-align: center;
}
.pp-trust-row span::first-letter { color: var(--red); }

.pp-thumbnails { max-height: 620px; overflow-y: auto; scrollbar-width: thin; }
.pp-thumb { position: relative; }
.pp-thumb.active { border-color: var(--ink); box-shadow: inset 0 0 0 1px var(--ink); }
.pp-thumb span { display: block; padding: 4px 3px 5px; color: var(--muted); font-size: 8px; line-height: 1.1; text-align: center; }
.pp-thumb.active span { color: var(--ink); font-weight: 700; }

@media (max-width: 620px) {
  .pp-benefits { grid-template-columns: repeat(2, minmax(0, 1fr)); margin-top: 18px; }
  .pp-benefits > div { min-height: 82px; padding: 10px 7px; }
  .pp-benefits > div:nth-child(3) { border-left: 0; border-top: 1px solid var(--line); }
  .pp-benefits > div:nth-child(4) { border-top: 1px solid var(--line); }
  .pp-benefits span { font-size: 19px; }
  .pp-benefits strong { font-size: 8px; }
  .pp-benefits small { font-size: 9px; }
  .pp-choice-grid { grid-template-columns: 1fr; gap: 14px; margin-top: 18px; }
  .pp-choice-grid [data-model-group] { grid-column: auto; }
  .pp-bundle { margin-top: 22px; }
  .pp-bundle-heading { align-items: flex-start; flex-direction: column; gap: 3px; }
  .pp-bundle-heading small { text-align: left; }
  .pp-bundle-options { grid-template-columns: repeat(3, minmax(106px, 1fr)); gap: 7px; overflow-x: auto; padding-bottom: 3px; }
  .pp-bundle-option { min-height: 106px; padding: 11px 10px; }
  .pp-bundle-option b { font-size: 20px; }
  .pp-trust-row { gap: 5px; margin-top: 12px; font-size: 9px; }
  .pp-thumbnails { max-height: none; display: flex; gap: 7px; overflow-x: auto; overflow-y: hidden; padding-bottom: 2px; }
  .pp-thumb { flex: 0 0 78px; }
  .pp-gallery-controls { display: flex; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; }
}

/* Product-first refinement — 31 July 2026 */
.pp-choice-steps,
.pp-assurance,
.pp-share,
.pp-favorite {
  display: none !important;
}

.pp-product {
  grid-template-columns: minmax(0, 1.24fr) minmax(370px, .76fr);
}

.pp-main-image {
  background: #fff;
}

.pp-main-image img {
  width: calc(100% - 24px);
  height: calc(100% - 24px);
}

.pp-buy-row {
  grid-template-columns: 1fr;
}

.pp-options {
  gap: 7px;
}

.pp-option,
.pp-color {
  min-width: 48px;
  min-height: 40px;
  padding-inline: 12px;
}

.pp-description {
  margin-block: 22px;
}

.pp-status {
  padding: 0 0 18px;
  border: 0;
  border-bottom: 1px solid var(--line);
}

@media (max-width: 620px) {
  body {
    padding-bottom: 68px;
  }

  .pp-breadcrumbs {
    display: none;
  }

  .pp-mobile-summary {
    padding: 22px 18px 18px;
  }

  .pp-mobile-summary strong {
    font-size: 29px;
  }

  .pp-product {
    gap: 0;
  }

  .pp-gallery-layout {
    gap: 0;
  }

  .pp-main-image {
    min-height: 0;
    aspect-ratio: 1 / 1.08;
  }

  .pp-main-image img {
    width: 100%;
    height: 100%;
  }

  .pp-image-label,
  .pp-zoom,
  .pp-swipe-hint {
    display: none;
  }

  .pp-gallery-controls {
    right: 14px;
    bottom: 14px;
    border: 1px solid var(--line);
  }

  .pp-thumbnails {
    padding: 10px 14px 0;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .pp-thumb {
    aspect-ratio: 1.35 / 1;
  }

  .pp-thumb span {
    left: 8px;
    bottom: 8px;
  }

  .pp-buy {
    padding: 28px 18px 58px;
  }

  .pp-buy > .pp-eyebrow,
  .pp-buy > .pp-title-row,
  .pp-buy > .pp-sub {
    display: none;
  }

  .pp-description {
    margin: 0 0 20px;
    font-size: 13px;
    line-height: 1.65;
  }

  .pp-status {
    margin-bottom: 22px;
    font-size: 9px;
    line-height: 1.5;
  }

  .pp-option-group {
    margin-top: 20px;
  }

  .pp-option-label {
    margin-bottom: 9px;
  }

  .pp-option,
  .pp-color {
    min-width: 46px;
    min-height: 40px;
    padding-inline: 11px;
  }

  .pp-selection {
    margin-top: 22px;
  }

  .pp-add {
    min-height: 54px;
  }

  .pp-details {
    margin-top: 24px;
  }

  .pp-details summary {
    padding-block: 17px;
  }
}

/* Final responsive polish: product first, calm spacing and reliable image framing. */
.pp-product {
  width: min(1440px, 92vw);
  gap: clamp(28px, 4vw, 64px);
}

.pp-main-image {
  min-height: 0;
  aspect-ratio: 1 / 1.03;
}

.pp-main-image img {
  width: calc(100% - 34px);
  height: calc(100% - 34px);
  max-width: 100%;
  max-height: 100%;
}

.pp-buy {
  padding-top: 10px;
}

.pp-description {
  max-width: 58ch;
  font-size: 15px;
  line-height: 1.7;
}

.pp-option-group + .pp-option-group {
  margin-top: 20px;
}

@media (min-width: 901px) {
  .pp-gallery-layout {
    grid-template-columns: 82px minmax(0, 1fr);
  }

  .pp-main-image {
    min-height: clamp(560px, 52vw, 760px);
  }

  .pp-buy {
    max-width: 560px;
  }
}

@media (max-width: 900px) {
  .pp-product {
    width: min(760px, calc(100% - 32px));
    gap: 32px;
  }

  .pp-main-image {
    aspect-ratio: 1 / .98;
  }

  .pp-buy {
    padding: 0 0 64px;
  }

  .pp-feature-section {
    margin-top: 0;
  }
}

@media (max-width: 620px) {
  .pp-product {
    width: 100%;
    gap: 0;
  }

  .pp-main-image {
    aspect-ratio: 1 / 1;
    background: #fff;
  }

  .pp-main-image img {
    width: calc(100% - 20px);
    height: calc(100% - 20px);
  }

  .pp-thumbnails {
    padding: 10px 16px 0;
    grid-template-columns: repeat(2, minmax(0, 86px));
  }

  .pp-buy {
    padding: 24px 18px 72px;
  }

  .pp-description {
    font-size: 14px;
    line-height: 1.65;
  }

  .pp-specs div {
    grid-template-columns: minmax(84px, .8fr) 1.2fr;
    gap: 10px;
  }

  .pp-specs dd {
    font-size: 9px;
  }

  .pp-feature-section {
    padding: 64px 20px;
  }

  .pp-related {
    padding: 64px 16px 84px;
  }
}

/* Product specifications and honest drop timer */
.pp-specs {
  margin: 0 0 22px;
  border-top: 1px solid var(--line);
}

.pp-specs div {
  min-height: 38px;
  display: grid;
  grid-template-columns: minmax(90px, .7fr) 1.3fr;
  align-items: center;
  gap: 14px;
  border-bottom: 1px solid var(--line);
}

.pp-specs dt {
  color: var(--muted);
  font: 700 8px var(--head);
  letter-spacing: .08em;
  text-transform: uppercase;
}

.pp-specs dd {
  margin: 0;
  font-size: 10px;
  font-weight: 700;
  text-align: right;
}

@media (max-width: 620px) {
  .pp-specs {
    margin-bottom: 20px;
  }

  .pp-specs div {
    min-height: 36px;
  }

}

/* Conversion clarity: concise sizing, reassurance and cart pairing */
.pp-size-hint {
  margin: 9px 0 0;
  color: var(--muted);
  font-size: 9px;
  line-height: 1.45;
}

.pp-size-hint span {
  margin-right: 5px;
  color: var(--red);
  font-weight: 900;
}

.pp-size-hint a {
  margin-left: 5px;
  color: var(--ink);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.pp-conversion-safety {
  margin-top: 11px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border: 1px solid var(--line);
}

.pp-conversion-safety span {
  min-height: 38px;
  padding: 8px 10px;
  display: grid;
  place-items: center;
  border-right: 1px solid var(--line);
  color: var(--muted);
  font: 700 7px/1.35 var(--head);
  letter-spacing: .04em;
  text-align: center;
  text-transform: uppercase;
}

.pp-conversion-safety span:last-child {
  border-right: 0;
}

.pp-cart-recommendation {
  margin: 0 18px 16px;
  padding: 12px;
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) auto;
  align-items: center;
  gap: 11px;
  border: 1px solid var(--line);
  background: #f5f5f2;
}

.pp-cart-recommendation[hidden] {
  display: none;
}

.pp-cart-recommendation img {
  width: 58px;
  height: 64px;
  object-fit: cover;
  background: #e9e9e5;
}

.pp-cart-recommendation small,
.pp-cart-recommendation strong,
.pp-cart-recommendation span {
  display: block;
}

.pp-cart-recommendation small {
  margin-bottom: 3px;
  color: var(--muted);
  font: 800 7px var(--head);
  letter-spacing: .08em;
  text-transform: uppercase;
}

.pp-cart-recommendation strong {
  margin-bottom: 3px;
  font-size: 11px;
}

.pp-cart-recommendation span {
  color: var(--muted);
  font-size: 8px;
}

.pp-cart-recommendation a {
  padding: 8px 9px;
  border: 1px solid var(--ink);
  font: 800 8px var(--head);
  text-transform: uppercase;
}

@media (max-width: 620px) {
  .pp-conversion-safety span {
    min-height: 34px;
    padding-inline: 6px;
  }

  .pp-conversion-safety span:last-child {
    border-right: 0;
  }
}

/* Final overrides for the refined gallery and purchase flow */
.pp-benefits { display:grid; grid-template-columns:repeat(4,minmax(0,1fr)); gap:0; margin:22px 0 24px; border-top:1px solid var(--line); border-bottom:1px solid var(--line); }
.pp-benefits > div { min-height:96px; padding:14px 10px 12px; display:flex; flex-direction:column; align-items:center; justify-content:center; gap:4px; text-align:center; }
.pp-benefits > div + div { border-left:1px solid var(--line); }
.pp-benefits span { font-size:22px; line-height:1; }
.pp-benefits strong { font:800 9px/1.2 var(--head); letter-spacing:.04em; text-transform:uppercase; }
.pp-benefits small { color:var(--muted); font-size:10px; line-height:1.25; }
.pp-choice-grid { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:18px 20px; margin:24px 0 0; }
.pp-choice-grid .pp-option-group { margin:0; }
.pp-choice-grid [data-model-group] { grid-column:1/-1; }
.pp-bundle { margin:26px 0 0; }
.pp-bundle-heading { display:flex; align-items:baseline; justify-content:space-between; gap:12px; margin-bottom:10px; }
.pp-bundle-heading > span { font:800 11px var(--head); letter-spacing:.08em; text-transform:uppercase; }
.pp-bundle-heading small { color:var(--muted); font-size:10px; text-align:right; }
.pp-bundle-options { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:8px; }
.pp-bundle-option { min-height:128px; padding:14px; display:flex; flex-direction:column; align-items:flex-start; justify-content:flex-start; gap:5px; border:1px solid var(--line); border-radius:2px; background:var(--white); color:var(--ink); text-align:left; cursor:pointer; }
.pp-bundle-option:hover { border-color:var(--ink); }
.pp-bundle-option.active { border-color:var(--red); box-shadow:inset 0 0 0 1px var(--red); }
.pp-bundle-option.is-featured { border-color:var(--red); }
.pp-bundle-option em { align-self:stretch; margin:-28px -15px 5px; padding:4px 8px; border-radius:999px; background:var(--red); color:var(--white); font:800 8px var(--head); letter-spacing:.08em; text-align:center; text-transform:uppercase; font-style:normal; }
.pp-bundle-option strong { font:800 11px var(--head); letter-spacing:.06em; text-transform:uppercase; }
.pp-bundle-option i { min-height:24px; margin-top:5px; color:var(--muted); font:400 22px/1 ui-monospace, monospace; letter-spacing:-.18em; font-style:normal; }
.pp-bundle-option b { margin-top:auto; font:800 24px/1 var(--head); letter-spacing:-.04em; }
.pp-bundle-option small { color:var(--muted); font-size:10px; }
.pp-bundle-option > span { align-self:flex-start; padding:3px 6px; border-radius:999px; background:var(--red); color:var(--white); font:800 8px var(--head); letter-spacing:.04em; text-transform:uppercase; }
.pp-trust-row { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:8px; margin:15px 0 0; color:var(--ink); font-size:10px; line-height:1.3; text-align:center; }
.pp-trust-row span::first-letter { color:var(--red); }
.pp-purchase-signals { display:flex; flex-wrap:wrap; align-items:center; gap:9px 22px; margin:0 0 18px; color:var(--ink); font-size:10px; }
.pp-purchase-signals span { white-space:nowrap; }
.pp-purchase-signals b { color:#b78518; letter-spacing:.08em; }
.pp-thumbnails { max-height:620px; overflow-y:auto; scrollbar-width:thin; }
.pp-thumb { position:relative; }
.pp-thumb.active { border-color:var(--ink); box-shadow:inset 0 0 0 1px var(--ink); }
.pp-thumb span { display:block; padding:4px 3px 5px; color:var(--muted); font-size:8px; line-height:1.1; text-align:center; }
.pp-thumb.active span { color:var(--ink); font-weight:700; }
@media (max-width:620px) {
  .pp-benefits { grid-template-columns:repeat(2,minmax(0,1fr)); margin-top:18px; }
  .pp-benefits > div { min-height:82px; padding:10px 7px; }
  .pp-benefits > div:nth-child(3) { border-left:0; border-top:1px solid var(--line); }
  .pp-benefits > div:nth-child(4) { border-top:1px solid var(--line); }
  .pp-benefits span { font-size:19px; }
  .pp-benefits strong { font-size:8px; }
  .pp-benefits small { font-size:9px; }
  .pp-choice-grid { grid-template-columns:1fr; gap:14px; margin-top:18px; }
  .pp-choice-grid [data-model-group] { grid-column:auto; }
  .pp-bundle { margin-top:22px; }
  .pp-bundle-heading { align-items:flex-start; flex-direction:column; gap:3px; }
  .pp-bundle-heading small { text-align:left; }
  .pp-bundle-options { grid-template-columns:repeat(3,minmax(106px,1fr)); gap:7px; overflow-x:auto; padding-bottom:3px; }
  .pp-bundle-option { min-height:106px; padding:11px 10px; }
  .pp-bundle-option b { font-size:20px; }
  .pp-trust-row { gap:5px; margin-top:12px; font-size:9px; }
  .pp-purchase-signals { display:none; }
  .pp-thumbnails { max-height:none; display:flex; gap:7px; overflow-x:auto; overflow-y:hidden; padding-bottom:2px; }
  .pp-thumb { flex:0 0 78px; }
  .pp-gallery-controls { display:flex; }
}

/* Final product-first cascade */
.pp-choice-steps,
.pp-assurance,
.pp-share,
.pp-favorite {
  display: none !important;
}

.pp-buy-row {
  grid-template-columns: 1fr;
}

@media (max-width: 620px) {
  .pp-product {
    width: 100%;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
  }

  .pp-mobile-summary {
    width: 100%;
    padding: 22px 18px 18px;
  }

  .pp-mobile-summary strong {
    font-size: 29px;
  }

  .pp-gallery-layout {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .pp-main-image {
    min-height: 0;
    aspect-ratio: 1 / 1.08;
  }

  .pp-main-image img {
    width: 100%;
    height: 100%;
  }

  .pp-image-label,
  .pp-zoom,
  .pp-swipe-hint {
    display: none;
  }

  .pp-thumbnails {
    order: 2;
    padding: 10px 14px 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .pp-thumb {
    aspect-ratio: 1.35 / 1;
  }

  .pp-gallery-controls {
    right: 14px;
    bottom: 14px;
    border: 1px solid var(--line);
  }

  .pp-buy {
    padding: 28px 18px 58px;
  }

  .pp-buy > .pp-eyebrow,
  .pp-buy > .pp-title-row,
  .pp-buy > .pp-sub {
    display: none;
  }

  .pp-description {
    margin: 0 0 20px;
    font-size: 13px;
    line-height: 1.65;
  }

  .pp-status {
    margin-bottom: 22px;
    padding: 0 0 18px;
    border: 0;
    border-bottom: 1px solid var(--line);
    font-size: 9px;
    line-height: 1.5;
  }

  .pp-option,
  .pp-color {
    min-width: 46px;
    min-height: 40px;
    padding-inline: 11px;
  }
}

/* Conversion guidance and motion, using only verified pre-launch information. */
.pp-main-image {
  touch-action: pan-y;
}

.pp-main-image img.is-switching {
  animation: pp-image-switch .28s ease both;
}

.pp-gallery-controls {
  position: absolute;
  right: 18px;
  top: 18px;
  z-index: 2;
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, .94);
  color: var(--ink);
}

.pp-gallery-controls button {
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  font: 700 16px var(--head);
}

.pp-gallery-controls button:hover,
.pp-gallery-controls button:focus-visible {
  background: var(--ink);
  color: var(--white);
}

.pp-gallery-controls span {
  min-width: 54px;
  text-align: center;
  font: 800 8px var(--head);
  letter-spacing: .08em;
}

.pp-swipe-hint {
  display: none;
}

.pp-choice-steps {
  margin: -13px 0 30px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
  border-top: 0;
}

.pp-choice-steps span {
  min-height: 46px;
  padding: 8px 10px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-right: 1px solid var(--line);
  color: var(--muted);
  font: 700 8px var(--head);
  letter-spacing: .06em;
  text-transform: uppercase;
}

.pp-choice-steps span:last-child {
  border-right: 0;
}

.pp-choice-steps b {
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #deded9;
  color: var(--ink);
  font-size: 8px;
}

.pp-choice-steps .complete {
  color: var(--ink);
}

.pp-choice-steps .complete b {
  background: var(--red);
  color: var(--white);
}

.pp-selection.needs-size {
  color: var(--red);
}

.pp-add:disabled,
.pp-mobile-buy button:disabled {
  cursor: not-allowed;
  background: #d8d8d3;
  color: #62625e;
}

.pp-prelaunch-note {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 9px;
  line-height: 1.5;
}

.pp-add-feedback {
  position: fixed;
  z-index: 100;
  left: 50%;
  top: 50%;
  width: 150px;
  height: 150px;
  display: grid;
  place-content: center;
  gap: 6px;
  border: 6px solid var(--white);
  background: var(--red);
  color: var(--white);
  text-align: center;
  transform: translate(-50%, -50%) rotate(-7deg);
  pointer-events: none;
  animation: pp-stamp-in .85s cubic-bezier(.2, .9, .2, 1) both;
  box-shadow: 10px 12px 0 rgba(8, 8, 8, .86);
}

.pp-add-feedback strong {
  font: 800 31px var(--head);
  letter-spacing: -.06em;
}

.pp-add-feedback span {
  font: 800 8px var(--head);
  letter-spacing: .12em;
  text-transform: uppercase;
}

[data-cart-count].pop {
  animation: pp-cart-pop .45s ease;
}

.motion-ready .pp-reveal {
  opacity: 0;
  transform: translateY(22px);
}

.motion-ready .pp-reveal.revealed {
  opacity: 1;
  transform: none;
  transition:
    opacity .55s ease var(--reveal-delay, 0ms),
    transform .55s cubic-bezier(.2, .8, .2, 1) var(--reveal-delay, 0ms);
}

@keyframes pp-image-switch {
  from { opacity: .45; transform: scale(.985); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes pp-stamp-in {
  0% { opacity: 0; transform: translate(-50%, -50%) scale(.55) rotate(-14deg); }
  30% { opacity: 1; transform: translate(-50%, -50%) scale(1.06) rotate(-7deg); }
  72% { opacity: 1; transform: translate(-50%, -50%) scale(1) rotate(-7deg); }
  100% { opacity: 0; transform: translate(-50%, -56%) scale(.96) rotate(-4deg); }
}

@keyframes pp-cart-pop {
  50% { transform: scale(1.3); }
}

@media (max-width: 620px) {
  .pp-gallery-controls {
    top: auto;
    right: 12px;
    bottom: 12px;
  }

  .pp-zoom {
    left: 12px;
    right: auto;
    bottom: 12px;
  }

  .pp-swipe-hint {
    position: absolute;
    z-index: 2;
    left: 50%;
    top: 14px;
    display: block;
    padding: 7px 9px;
    background: rgba(8, 8, 8, .88);
    color: var(--white);
    font: 700 7px var(--head);
    letter-spacing: .06em;
    text-transform: uppercase;
    transform: translateX(-50%);
    white-space: nowrap;
  }

  .pp-choice-steps {
    margin-bottom: 25px;
  }

  .pp-choice-steps span {
    padding-inline: 7px;
    gap: 5px;
    font-size: 7px;
  }

  .pp-prelaunch-note {
    margin-bottom: 4px;
    text-align: center;
  }

  .pp-mobile-summary {
    padding: 18px 20px 17px;
    display: block;
    border-bottom: 1px solid var(--line);
    background: var(--white);
  }

  .pp-mobile-summary > span {
    color: var(--red);
    font: 800 7px var(--head);
    letter-spacing: .12em;
    text-transform: uppercase;
  }

  .pp-mobile-summary > div {
    margin-top: 8px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: baseline;
  }

  .pp-mobile-summary strong {
    font: 700 26px var(--head);
    letter-spacing: -.045em;
  }

  .pp-mobile-summary b {
    font: 700 13px var(--head);
  }

  .pp-mobile-summary small {
    margin-top: 5px;
    display: block;
    color: var(--muted);
    font-size: 8px;
    letter-spacing: .06em;
    text-transform: uppercase;
  }
}

@media (prefers-reduced-motion: reduce) {
  .pp-main-image img.is-switching,
  .pp-add-feedback,
  [data-cart-count].pop {
    animation: none !important;
  }

  .motion-ready .pp-reveal,
  .motion-ready .pp-reveal.revealed {
    opacity: 1;
    transform: none;
  }
}

/* Final mobile gallery cleanup */
@media (max-width: 620px) {
  .pp-product {
    width: 100%;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
  }

  .pp-mobile-summary {
    width: 100%;
    padding: 22px 18px 18px;
  }

  .pp-gallery-layout {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .pp-main-image {
    min-height: 0;
    aspect-ratio: 1 / 1.08;
  }

  .pp-main-image img {
    width: 100%;
    height: 100%;
  }

  .pp-image-label,
  .pp-zoom,
  .pp-swipe-hint,
  .pp-gallery-controls {
    display: none;
  }

  .pp-thumbnails {
    order: 2;
    padding: 10px 14px 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .pp-thumb {
    aspect-ratio: 1.35 / 1;
  }

  .pp-choice-steps,
  .pp-assurance,
  .pp-share,
  .pp-favorite {
    display: none !important;
  }
}

/* Final specifications and drop countdown cascade */
.pp-specs {
  margin: 0 0 22px;
  border-top: 1px solid var(--line);
}

.pp-specs div {
  min-height: 38px;
  display: grid;
  grid-template-columns: minmax(90px, .7fr) 1.3fr;
  align-items: center;
  gap: 14px;
  border-bottom: 1px solid var(--line);
}

.pp-specs dt {
  color: var(--muted);
  font: 700 8px var(--head);
  letter-spacing: .08em;
  text-transform: uppercase;
}

.pp-specs dd {
  margin: 0;
  font-size: 10px;
  font-weight: 700;
  text-align: right;
}

.pp-drop-countdown {
  min-height: 66px;
  margin: 0 0 24px;
  padding: 12px 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  background: var(--ink);
  color: var(--white);
}

.pp-drop-countdown[hidden] {
  display: none;
}

.pp-drop-countdown strong {
  font: 800 24px/1 ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  letter-spacing: -.04em;
}

.pp-drop-countdown span {
  color: #ff747d;
  font: 800 7px/1.35 var(--head);
  letter-spacing: .1em;
  text-align: right;
  text-transform: uppercase;
}

.pp-drop-countdown[data-drop-state="unset"] strong {
  color: #a9a9a4;
}

@media (max-width: 620px) {
  .pp-specs {
    margin-bottom: 20px;
  }

  .pp-specs div {
    min-height: 36px;
  }

  .pp-drop-countdown {
    min-height: 58px;
    margin-bottom: 22px;
  }

  .pp-drop-countdown strong {
    font-size: 21px;
  }
}
