:root {
  --ink: #1d1f1f;
  --soft-ink: #5f6462;
  --muted: #858a88;
  --line: rgba(29, 31, 31, 0.14);
  --paper: #fffefa;
  --white: #fff;
  --product-stage: #fffefa;
  --silver: #d7dcda;
  --display: "Marcellus", "Iowan Old Style", Georgia, serif;
  --sans: "Manrope", "Helvetica Neue", Arial, sans-serif;
  --header-height: 64px;
  --control-target: 44px;
}

.responsive-picture {
  display: contents;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--paper);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  font-kerning: normal;
  font-optical-sizing: auto;
  line-height: 1.6;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
}

button,
input,
output {
  font: inherit;
  letter-spacing: 0;
}

button,
a {
  color: inherit;
}

button {
  cursor: pointer;
}

a {
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.55;
}

:focus-visible {
  outline: 2px solid #3f5551;
  outline-offset: 3px;
}

:where(button, [role="button"], input, select, summary, a):focus-visible {
  outline: 2px solid #3f5551;
  outline-offset: 3px;
}

:where(.menu-button, .icon-button, .gallery-arrow, .quantity-stepper button, .wishlist-button, .dialog-close) {
  min-width: var(--control-target);
  min-height: var(--control-target);
}

.skip-link,
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  width: auto;
  height: auto;
  margin: 10px;
  padding: 10px 14px;
  clip: auto;
  overflow: visible;
  z-index: 100;
  background: var(--ink);
  color: var(--paper);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  min-height: var(--header-height);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 42px;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 254, 250, 0.96);
  backdrop-filter: blur(14px);
}

.wordmark,
.footer-wordmark {
  font-size: 1.14rem;
  font-weight: 520;
  line-height: 1;
}

.wordmark {
  grid-column: 1;
  justify-self: start;
  font-size: 1.22rem;
  letter-spacing: .34em;
  text-indent: .34em;
}

.primary-navigation {
  grid-column: 2;
  display: flex;
  align-items: center;
  gap: 34px;
}

.primary-navigation a,
.menu-button {
  min-height: 44px;
  display: inline-grid;
  place-items: center;
  font-size: 0.69rem;
  font-weight: 650;
  letter-spacing: .13em;
  line-height: 1;
  text-transform: uppercase;
}

.primary-navigation a[aria-current="page"] {
  color: #6f7774;
}

.header-actions {
  grid-column: 3;
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 18px;
}

.header-link {
  min-width: 44px;
  min-height: 44px;
  display: inline-grid;
  place-items: center;
  font-size: .69rem;
  font-weight: 650;
  letter-spacing: .13em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.site-header .icon-button {
  width: 42px;
  height: 42px;
  min-width: 42px;
  min-height: 42px;
}

.icon-button,
.menu-button,
.gallery-arrow,
.wishlist-button,
.dialog-close {
  min-width: 44px;
  min-height: 44px;
  display: inline-grid;
  place-items: center;
  border: 0;
  background: transparent;
}

.icon-button {
  position: relative;
}

.icon-button svg,
.wishlist-button svg {
  width: 22px;
  height: 22px;
}

.site-header .icon-button svg {
  width: 23px;
  height: 23px;
}

.bag-count {
  position: absolute;
  right: 1px;
  bottom: 1px;
  min-width: 17px;
  height: 17px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: var(--paper);
  font-size: 0.61rem;
  line-height: 1;
}

.menu-button {
  display: none;
  padding: 0;
}

.breadcrumb {
  min-height: 52px;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 0 30px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 620;
  text-transform: uppercase;
}

.breadcrumb a {
  color: var(--ink);
}

.product-shell {
  display: grid;
  grid-template-columns: minmax(0, 58fr) minmax(390px, 42fr);
  align-items: start;
  background: var(--product-stage);
}

.desktop-gallery {
  min-width: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  background: var(--product-stage);
}

.desktop-gallery__item {
  position: relative;
  margin: 0;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--product-stage);
}

.desktop-gallery__item:first-child {
  grid-column: 1 / -1;
  height: calc(100vh - var(--header-height) - 52px);
  height: calc(100svh - var(--header-height) - 52px);
  min-height: 520px;
  aspect-ratio: auto;
}

.desktop-gallery__button {
  width: 100%;
  height: 100%;
  min-height: 44px;
  display: block;
  padding: 0;
  border: 0;
  background: var(--product-stage);
}

.desktop-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: var(--product-stage);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.desktop-gallery__button:hover img {
  transform: scale(1.018);
}

.desktop-gallery__button::after {
  content: "View detail";
  position: absolute;
  right: 18px;
  bottom: 18px;
  padding: 8px 10px;
  border: 1px solid rgba(29, 31, 31, 0.24);
  background: rgba(255, 254, 250, 0.9);
  font-size: 0.64rem;
  font-weight: 650;
  text-transform: uppercase;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.desktop-gallery__button:hover::after,
.desktop-gallery__button:focus-visible::after {
  opacity: 1;
}

.mobile-gallery {
  display: none;
}

.purchase-rail {
  --purchase-gutter: clamp(34px, 4.7vw, 86px);
  position: sticky;
  top: calc(var(--header-height) + 24px);
  width: 100%;
  max-width: 590px;
  display: grid;
  align-content: start;
  justify-self: center;
  gap: 20px;
  padding: 50px var(--purchase-gutter) 72px;
}

.product-kicker,
.section-kicker,
.pdp-label,
.option-label {
  margin: 0;
  color: var(--muted);
  font-size: 0.67rem;
  font-weight: 680;
  line-height: 1.2;
  text-transform: uppercase;
}

.purchase-rail h1 {
  margin: 0;
  font-family: var(--display);
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.18;
  letter-spacing: 0;
}

.product-display-meta {
  margin: -10px 0 -2px;
  color: var(--soft-ink);
  font-size: 0.72rem;
  letter-spacing: 0.045em;
  line-height: 1.45;
}

.product-description {
  max-width: 41ch;
  margin: -2px 0 0;
  color: var(--soft-ink);
  font-size: 0.9rem;
  line-height: 1.72;
}

.product-price {
  margin: -2px 0 2px;
  font-size: 0.95rem;
  font-weight: 650;
}

.option-row {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid var(--line);
}

.quantity-row {
  border-bottom: 1px solid var(--line);
}

.pdp-variant-block {
  --ink: #25231f;
  --soft-ink: #57524b;
  width: 486px;
  max-width: calc(100% + var(--purchase-gutter) - 18px);
  display: grid;
  gap: 12px;
  padding-top: 8px;
  border-top: 1px solid rgba(37, 35, 31, .14);
}

.pdp-variant-block[hidden] {
  display: none !important;
}

.pdp-selected-color {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
}

.pdp-selected-color strong {
  font-size: .94rem;
  font-weight: 650;
  line-height: 1.35;
}

.pdp-selected-color span {
  color: var(--muted);
  font-size: .78rem;
  line-height: 1.35;
}

.pdp-color-options {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.pdp-color-option {
  min-width: 0;
  display: grid;
  gap: 8px;
  padding: 8px;
  border: 1px solid rgba(37, 35, 31, .16);
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  text-align: center;
  text-decoration: none;
}

.pdp-color-option.is-selected {
  border-color: var(--ink);
  box-shadow: inset 0 0 0 1px var(--ink);
}

.pdp-color-option__thumb {
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: var(--white);
}

.pdp-color-option__thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.pdp-color-option > span:last-child {
  min-height: 18px;
  overflow: hidden;
  color: var(--soft-ink);
  font-size: .72rem;
  font-weight: 650;
  letter-spacing: .06em;
  line-height: 1.2;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.quantity-stepper {
  height: 44px;
  display: grid;
  grid-template-columns: 44px 36px 44px;
  align-items: center;
}

.quantity-stepper button {
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  font-size: 1rem;
}

.quantity-stepper button:disabled {
  color: #b8bcba;
  cursor: not-allowed;
}

.quantity-stepper output {
  text-align: center;
  font-size: 0.82rem;
  font-weight: 650;
}

.primary-action,
.secondary-action {
  width: 100%;
  min-height: 52px;
  border: 1px solid var(--ink);
  font-size: 0.69rem;
  font-weight: 680;
  text-transform: uppercase;
  transition: background 0.2s ease, color 0.2s ease;
}

.primary-action {
  background: var(--ink);
  color: var(--paper);
}

.primary-action:hover,
.primary-action:focus-visible {
  background: #303433;
}

.secondary-actions {
  display: grid;
  grid-template-columns: 1fr 52px;
  gap: 10px;
}

.secondary-action {
  background: transparent;
  color: var(--ink);
}

.secondary-action:hover,
.secondary-action:focus-visible {
  background: #f1f2ef;
}

.wishlist-button {
  border: 1px solid var(--ink);
}

.wishlist-button[aria-pressed="true"] svg {
  fill: var(--ink);
}

.prototype-note {
  margin: -4px 0 0;
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.55;
}

.detail-accordions {
  border-top: 1px solid var(--line);
}

.detail-accordions details {
  border-bottom: 1px solid var(--line);
}

.detail-accordions summary {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  list-style: none;
  cursor: pointer;
  font-size: 0.72rem;
  font-weight: 680;
  text-transform: uppercase;
}

.detail-accordions summary::-webkit-details-marker {
  display: none;
}

.detail-accordions summary::after {
  content: "+";
  font-size: 1rem;
  font-weight: 400;
}

.detail-accordions details[open] summary::after {
  content: "−";
}

.accordion-content {
  padding: 0 0 21px;
}

.accordion-content p {
  margin: 0 0 8px;
  color: var(--soft-ink);
  font-size: 0.82rem;
  line-height: 1.62;
}

.care-list {
  display: grid;
  gap: 7px;
  margin: 0 0 16px;
  padding: 0;
  list-style: none;
}

.care-list li {
  position: relative;
  padding-left: 14px;
  color: var(--soft-ink);
  font-size: 0.82rem;
  line-height: 1.62;
}

.care-list li::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "·";
}

.accordion-link {
  display: inline-block;
  padding-bottom: 3px;
  border-bottom: 1px solid currentColor;
  color: var(--ink);
  font-size: 0.68rem;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.listing-bullets {
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.listing-bullets li {
  margin: 0;
  padding: 10px 0;
  border-top: 1px solid var(--line);
  color: var(--soft-ink);
  font-size: 0.82rem;
  line-height: 1.62;
}

.product-facts[hidden] {
  display: none;
}

.product-info-enhanced .product-price {
  margin-top: -8px;
}

.product-info-enhanced .product-description-rule {
  width: 486px;
  max-width: calc(100% + var(--purchase-gutter) - 18px);
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.product-info-enhanced .product-description {
  width: 100%;
  max-width: none;
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.65;
}

.product-info-enhanced .product-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 24px;
  margin: 0;
}

.product-info-enhanced .product-fact {
  min-width: 0;
  padding: 13px 0 14px;
  border-top: 1px solid var(--line);
}

.product-info-enhanced .product-fact:last-child:nth-child(odd) {
  grid-column: 1 / -1;
}

.product-info-enhanced .product-fact:last-child:nth-child(odd) dd {
  max-width: 38ch;
}

.product-info-enhanced .product-fact dt {
  margin: 0 0 5px;
  color: var(--muted);
  font-size: 0.63rem;
  font-weight: 680;
  letter-spacing: 0.06em;
  line-height: 1.3;
  text-transform: uppercase;
}

.product-info-enhanced .product-fact dd {
  margin: 0;
  color: var(--ink);
  font-size: 0.8rem;
  line-height: 1.48;
}

.editorial-band {
  display: grid;
  grid-template-columns: minmax(330px, 0.7fr) minmax(0, 1.3fr);
  align-items: center;
  min-height: 720px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.editorial-copy {
  padding: clamp(54px, 7vw, 112px);
}

.editorial-copy h2,
.related-heading h2,
.checkout-dialog h2 {
  margin: 18px 0 0;
  font-family: var(--display);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: 0;
}

.editorial-copy h2 {
  max-width: 11ch;
  font-size: clamp(2.2rem, 3.6vw, 4.2rem);
}

.editorial-copy > p:last-child {
  max-width: 43ch;
  margin: 25px 0 0;
  color: var(--soft-ink);
  font-size: 0.93rem;
  line-height: 1.78;
}

.editorial-media {
  height: 100%;
  min-height: 720px;
  margin: 0;
  overflow: hidden;
  background: #f1f3f2;
}

.editorial-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.editorial-band--film {
  grid-template-columns: minmax(320px, 520px) minmax(0, 1fr);
  gap: clamp(34px, 2.4vw, 48px);
  min-height: 0;
  padding: 62px 0 110px 72px;
  overflow: hidden;
}

.editorial-band--film .editorial-copy {
  max-width: 470px;
  padding: 0;
}

.editorial-band--film .editorial-copy h2 {
  max-width: 13ch;
  font-size: clamp(1.95rem, 2.15vw, 2.6rem);
}

.editorial-band--film .editorial-film__shell {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #1b1916;
  color: var(--white);
}

.editorial-film__shell::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(0deg, rgba(27, 25, 22, 0.46), transparent 38%);
}

.editorial-film__video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.editorial-film__controls {
  position: absolute;
  z-index: 1;
  right: 24px;
  bottom: 24px;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.editorial-film__control {
  min-width: 110px;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid rgba(255, 254, 250, 0.46);
  background: rgba(27, 25, 22, 0.28);
  color: var(--white);
  cursor: pointer;
  font: inherit;
  font-size: 0.66rem;
  font-weight: 650;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  transition: background-color 180ms ease, border-color 180ms ease;
}

.editorial-film__control:hover,
.editorial-film__control:focus-visible {
  border-color: rgba(255, 254, 250, 0.88);
  background: rgba(27, 25, 22, 0.56);
}

.related-section {
  padding: 84px 0 94px;
  overflow: hidden;
}

.related-heading {
  max-width: 700px;
  margin: 0 auto 36px;
  text-align: center;
}

.related-heading h2 {
  font-size: clamp(2rem, 2.7vw, 3.1rem);
}

.related-viewport {
  width: calc(100% - 64px);
  max-width: 1284px;
  margin: 0 auto;
  overflow: hidden;
}

.related-row {
  --related-gap: 28px;
  --related-visible: 4;
  width: 100%;
  display: flex;
  gap: var(--related-gap);
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-padding-inline: 0;
  scroll-snap-type: inline mandatory;
  scrollbar-width: none;
  box-sizing: border-box;
  padding: 0 0 30px;
  cursor: grab;
  touch-action: pan-y pinch-zoom;
  user-select: none;
}

.related-row::-webkit-scrollbar {
  display: none;
}

.related-row::after {
  content: "";
  flex: 0 0 calc(25% - 21px);
}

.related-row.is-dragging {
  cursor: grabbing;
  scroll-snap-type: none;
}

.related-product {
  min-width: 0;
  flex: 0 0 calc(25% - 21px);
  scroll-snap-align: start;
  text-align: center;
}

.related-product figure {
  margin: 0 0 18px;
  aspect-ratio: 1;
  box-sizing: border-box;
  overflow: hidden;
  background: #fff;
}

.related-product img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
}

.related-product a:hover img,
.related-product a:focus-visible img {
  transform: scale(1.018);
}

.related-product h3 {
  margin: 0;
  font-family: var(--display);
  font-size: 1.03rem;
  font-weight: 400;
  line-height: 1.35;
}

.related-product__meta {
  margin: 8px 0 0;
  color: var(--soft-ink);
  font-size: 0.76rem;
  letter-spacing: 0.04em;
}

.related-product__price {
  margin: 5px 0 0;
  font-size: 0.82rem;
}

.related-carousel__controls {
  width: min(460px, calc(100% - 48px));
  display: grid;
  grid-template-columns: 44px 1fr 44px;
  align-items: center;
  gap: 22px;
  margin: 0 auto;
}

.related-carousel__status {
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(80px, 1fr) auto;
  align-items: center;
  gap: 14px;
}

.related-carousel__page {
  min-width: 3.4em;
  color: var(--soft-ink);
  font-size: .69rem;
  font-variant-numeric: tabular-nums;
  letter-spacing: .12em;
  text-align: right;
}

.related-carousel__controls button {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
}

.related-carousel__controls button:disabled {
  opacity: 0.28;
  cursor: default;
}

.related-carousel__controls svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.related-carousel__progress {
  height: 1px;
  overflow: hidden;
  background: rgba(37, 35, 31, 0.18);
}

.related-carousel__progress span {
  display: block;
  width: 100%;
  height: 100%;
  transform: scaleX(0.5);
  transform-origin: left center;
  background: var(--ink);
  transition: transform 180ms ease;
}

.site-footer {
  min-height: 126px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 36px;
  padding: 28px 34px;
  border-top: 1px solid var(--line);
}

.site-footer nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
  color: var(--soft-ink);
  font-size: 0.75rem;
}

.site-footer p {
  max-width: 360px;
  margin: 0;
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.55;
  text-align: right;
}

dialog {
  border: 0;
  padding: 0;
  background: var(--paper);
  color: var(--ink);
}

dialog::backdrop {
  background: rgba(22, 24, 24, 0.62);
}

.zoom-dialog {
  width: min(94vw, 1100px);
  max-height: 94vh;
  overflow: hidden;
}

.dialog-toolbar {
  min-height: 52px;
  display: flex;
  justify-content: flex-end;
  border-bottom: 1px solid var(--line);
}

.dialog-close {
  width: auto;
  padding: 0 18px;
  font-size: 0.69rem;
  font-weight: 680;
  text-transform: uppercase;
}

.zoom-dialog img {
  width: 100%;
  max-height: calc(94vh - 52px);
  object-fit: contain;
  background: var(--product-stage);
}

.checkout-dialog {
  width: min(92vw, 520px);
  padding: 24px 28px 32px;
}

.checkout-dialog > .dialog-close {
  margin-left: auto;
}

.checkout-dialog h2 {
  font-size: 1.9rem;
}

.checkout-dialog > p:not(.section-kicker) {
  margin: 20px 0 28px;
  color: var(--soft-ink);
  font-size: 0.9rem;
  line-height: 1.72;
}

body[data-dialog-open="true"] {
  overflow: hidden;
}

@media (max-width: 1120px) {
  .site-header {
    padding: 0 26px;
  }

  .primary-navigation {
    gap: 22px;
  }

  .product-shell {
    grid-template-columns: minmax(0, 56fr) minmax(360px, 44fr);
  }

  .purchase-rail {
    padding-inline: 36px;
  }
}

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
    min-height: var(--header-height);
    padding: 0 18px;
  }

  .menu-button {
    display: inline-grid;
    justify-self: start;
    padding: 1px 6px;
    font-size: 0.69rem;
  }

  .wordmark {
    grid-column: 2;
    justify-self: center;
    font-size: 1.36rem;
    letter-spacing: .36em;
    text-indent: .36em;
  }

  .primary-navigation {
    position: absolute;
    top: var(--header-height);
    left: 0;
    right: 0;
    display: none;
    padding: 12px 18px 18px;
    border-bottom: 1px solid var(--line);
    background: var(--paper);
  }

  .primary-navigation.is-open {
    display: grid;
  }

  .primary-navigation a {
    justify-content: start;
  }

  .header-actions {
    grid-column: 3;
  }
}

@media (max-width: 767px) {

  body {
    padding-bottom: calc(72px + env(safe-area-inset-bottom));
  }

  .breadcrumb {
    min-height: 46px;
    padding: 0 16px;
    overflow: hidden;
    font-size: 0.61rem;
    white-space: nowrap;
  }

  .breadcrumb > a:first-child,
  .breadcrumb > a:first-child + span {
    display: none;
  }

  .breadcrumb > span[aria-hidden="true"],
  .breadcrumb #breadcrumbCategory {
    flex: 0 0 auto;
  }

  .breadcrumb #breadcrumbProduct {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .product-shell {
    display: block;
  }

  .desktop-gallery {
    display: none;
  }

  .mobile-gallery {
    display: block;
    background: var(--product-stage);
  }

  .gallery-viewport {
    width: 100%;
    height: min(100vw, calc(100svh - var(--header-height) - 108px));
    min-height: min(78vw, 360px);
    overflow: hidden;
    touch-action: pan-y pinch-zoom;
  }

  .gallery-track {
    height: 100%;
    display: flex;
    transform: translateX(0);
    transition: transform 0.34s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform;
  }

  .gallery-track.is-dragging {
    transition: none;
  }

  .mobile-slide {
    flex: 0 0 100%;
    margin: 0;
    background: var(--product-stage);
  }

  .mobile-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: var(--product-stage);
    -webkit-user-drag: none;
    user-select: none;
    pointer-events: none;
  }

  .gallery-controls {
    min-height: 54px;
    display: grid;
    grid-template-columns: 44px 1fr 44px;
    align-items: center;
    padding: 0 12px;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .gallery-arrow svg {
    width: 20px;
    height: 20px;
  }

  .gallery-controls output {
    text-align: center;
    color: var(--soft-ink);
    font-size: 0.7rem;
    font-weight: 620;
  }

  .purchase-rail {
    position: static;
    max-width: none;
    gap: 18px;
    padding: 34px 20px 58px;
  }

  .pdp-variant-block {
    width: 100%;
    max-width: none;
  }

  .product-info-enhanced .product-description-rule {
    width: 100%;
    max-width: none;
  }

  .pdp-color-options {
    gap: 8px;
  }

  .purchase-rail h1 {
    font-size: 1.2rem;
  }

  .product-info-enhanced .product-facts {
    grid-template-columns: 1fr;
  }

  .product-info-enhanced .product-fact:last-child:nth-child(odd) {
    grid-column: auto;
  }

  .primary-action,
  .secondary-action,
  .wishlist-button {
    min-height: 52px;
  }

  .secondary-actions {
    position: fixed;
    z-index: 35;
    right: 0;
    bottom: 0;
    left: 0;
    grid-template-columns: minmax(0, 1fr) 52px;
    padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
    border-top: 1px solid var(--line);
    background: var(--paper);
    box-shadow: 0 -10px 28px rgba(29, 31, 31, 0.08);
  }

  .editorial-band {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .editorial-copy {
    padding: 58px 22px;
  }

  .editorial-copy h2 {
    font-size: 2.55rem;
  }

  .editorial-media {
    min-height: 0;
    aspect-ratio: 1;
  }

  .editorial-band--film {
    gap: 32px;
    padding: 58px 0 76px 22px;
  }

  .editorial-band--film .editorial-copy {
    max-width: none;
    padding: 0 22px 0 0;
  }

  .editorial-band--film .editorial-copy h2 {
    font-size: 2.35rem;
  }

  .editorial-band--film .editorial-film__shell {
    aspect-ratio: 16 / 9;
  }

  .editorial-film__controls {
    right: 12px;
    bottom: 12px;
    gap: 7px;
  }

  .editorial-film__control {
    min-width: 94px;
    min-height: 40px;
    padding: 0 12px;
    font-size: 0.6rem;
  }

  .related-section {
    padding: 70px 0 82px;
  }

  .related-heading {
    padding: 0 20px;
    margin-bottom: 32px;
  }

  .related-viewport {
    width: auto;
    margin: 0 18px;
  }

  .related-row {
    --related-visible: 1;
    display: flex;
    gap: 14px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-padding-inline: 0;
    scroll-snap-type: inline proximity;
    scrollbar-width: none;
    padding: 0 0 14px;
  }

  .related-row::-webkit-scrollbar {
    display: none;
  }

  .related-row::after {
    display: none;
  }

  .related-product {
    flex: 0 0 min(72vw, 280px);
    scroll-snap-align: start;
  }

  .related-carousel__controls {
    margin-top: 4px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 22px;
    padding: 34px 22px;
  }

  .site-footer nav {
    justify-content: flex-start;
    gap: 16px 20px;
  }

  .site-footer p {
    text-align: left;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
