:root {
  --product-max: 1240px;
  --product-pad: clamp(20px, 4.8vw, 62px);
  --product-ink: #101010;
  --product-muted: #666a67;
  --product-line: #d8dad7;
  --product-soft: #f0f1ef;
  --product-paper: #ffffff;
}

.product-body {
  overflow-x: hidden;
  background: var(--product-paper);
  color: var(--product-ink);
}

.product-page {
  padding-top: 72px;
}

.product-shell {
  width: min(100% - (var(--product-pad) * 2), var(--product-max));
  margin: 0 auto;
}

.product-breadcrumbs {
  min-height: 68px;
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--product-muted);
  font-size: 12px;
}

.product-breadcrumbs a:hover {
  color: var(--product-ink);
  text-decoration: underline;
}

.product-overview {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(370px, .96fr);
  gap: clamp(38px, 6vw, 76px);
  align-items: start;
  padding-bottom: clamp(58px, 7vw, 88px);
}

.product-gallery {
  min-width: 0;
  position: sticky;
  top: 88px;
}

.product-gallery-stage {
  position: relative;
  overflow: hidden;
  background: var(--product-soft);
}

.product-gallery-open {
  width: 100%;
  height: auto;
  display: block;
  border: 0;
  padding: 0;
  background: transparent;
  cursor: zoom-in;
}

.product-gallery-main {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 1;
  object-fit: cover;
}

.artwork-product .product-gallery-stage {
  background: #ececea;
}

.artwork-product .product-gallery-main {
  aspect-ratio: 7 / 6;
  object-fit: contain;
}

.partner-product .product-overview {
  align-items: center;
}

.partner-product .product-summary {
  padding-top: 0;
}

.product-gallery-dots {
  position: absolute;
  left: 50%;
  bottom: 14px;
  display: flex;
  gap: 4px;
  transform: translateX(-50%);
}

.product-gallery-dot {
  width: 26px;
  height: 26px;
  position: relative;
  border: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
}

.product-gallery-dot::after {
  content: "";
  position: absolute;
  inset: 9px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .62);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, .18);
}

.product-gallery-dot.is-active::after {
  background: #fff;
  box-shadow: 0 0 0 2px var(--product-ink);
}

.product-gallery-count {
  position: absolute;
  right: 12px;
  bottom: 12px;
  padding: 5px 8px;
  background: rgba(0, 0, 0, .68);
  color: #fff;
  font-size: 10px;
  font-weight: 760;
}

.product-gallery-thumbs {
  display: flex;
  gap: 7px;
  margin-top: 8px;
  padding: 2px;
  overflow-x: auto;
  scrollbar-width: thin;
}

.product-gallery-thumb {
  width: 66px;
  height: 66px;
  flex: 0 0 auto;
  overflow: hidden;
  border: 1px solid transparent;
  padding: 0;
  background: var(--product-soft);
  cursor: pointer;
}

.product-gallery-thumb.is-active {
  border-color: var(--product-ink);
}

.product-gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-summary {
  padding-top: 10px;
}

.product-summary-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
  color: var(--product-muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.product-status-badge {
  padding: 5px 9px;
  border: 1px solid var(--product-ink);
  background: transparent;
  color: var(--product-ink);
  letter-spacing: .04em;
}

.product-summary h1 {
  margin: 0 0 10px;
  font-size: clamp(42px, 5vw, 68px);
  font-weight: 870;
  letter-spacing: -.055em;
  line-height: .96;
}

.product-detail-price {
  margin: 0 0 16px;
  font-size: 22px;
  font-weight: 800;
}

.product-shipping {
  margin: 0 0 20px;
  padding: 10px 12px;
  border-left: 2px solid var(--product-ink);
  background: var(--product-soft);
  color: var(--product-ink);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.5;
}

.product-summary-body {
  max-width: 560px;
  margin: 0 0 24px;
  color: var(--product-muted);
  font-size: 14px;
  line-height: 1.72;
}

.product-specs {
  margin: 0 0 24px;
  border-top: 1px solid var(--product-line);
}

.product-specs h2 {
  margin: 0;
  padding: 17px 0 12px;
  font-size: 11px;
  font-weight: 820;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.product-specs dl {
  margin: 0;
}

.product-specs dl > div {
  min-height: 40px;
  display: grid;
  grid-template-columns: minmax(105px, .78fr) 1.22fr;
  gap: 18px;
  align-items: center;
  border-top: 1px solid var(--product-line);
  font-size: 12px;
}

.product-specs dt {
  color: var(--product-muted);
}

.product-specs dd {
  margin: 0;
  font-weight: 720;
  text-align: right;
}

.product-purchase-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}

.product-cta {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid var(--product-ink);
  font-size: 12px;
  font-weight: 820;
  line-height: 1;
  transition: background 150ms ease, color 150ms ease;
}

.product-cta-primary {
  background: var(--product-ink);
  color: #fff;
}

.product-cta-primary:hover {
  background: #303030;
}

.product-cta-secondary:hover {
  background: var(--product-soft);
}

.product-store-note {
  margin: 10px 0 18px;
  color: var(--product-muted);
  font-size: 11px;
  line-height: 1.5;
}

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

.product-accordion {
  border-bottom: 1px solid var(--product-line);
}

.product-accordion h3 {
  margin: 0;
}

.product-accordion-button {
  width: 100%;
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 0;
  padding: 0;
  background: transparent;
  color: var(--product-ink);
  font: inherit;
  font-size: 12px;
  font-weight: 740;
  text-align: left;
  cursor: pointer;
}

.product-accordion-icon {
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border: 1px solid var(--product-line);
  border-radius: 50%;
  transition: transform 150ms ease;
}

.product-accordion-button[aria-expanded="true"] .product-accordion-icon {
  transform: rotate(45deg);
}

.product-accordion-panel {
  padding: 0 0 16px;
}

.product-accordion-panel ul {
  margin: 0;
  padding-left: 18px;
  color: var(--product-muted);
  font-size: 12px;
  line-height: 1.75;
}

.product-notes,
.product-sales {
  padding: clamp(56px, 7vw, 82px) 0;
  border-top: 1px solid var(--product-ink);
}

.product-notes-heading,
.product-section-heading {
  display: grid;
  grid-template-columns: .38fr .92fr 1fr;
  gap: 28px;
  align-items: start;
  margin-bottom: 36px;
}

.product-notes-heading > p,
.product-section-heading > p {
  margin: 0;
  color: var(--product-muted);
  font-size: 10px;
  font-weight: 820;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.product-notes-heading h2,
.product-section-heading h2 {
  margin: 0;
  font-size: clamp(30px, 3.8vw, 48px);
  font-weight: 840;
  letter-spacing: -.045em;
  line-height: 1;
}

.product-notes-heading > span,
.product-section-heading > span {
  color: var(--product-muted);
  font-size: 13px;
  line-height: 1.65;
}

.product-notes-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--product-line);
}

.product-note {
  min-height: 210px;
  padding: 24px 22px 26px 0;
  border-bottom: 1px solid var(--product-line);
}

.product-note + .product-note {
  padding-left: 22px;
  border-left: 1px solid var(--product-line);
}

.product-note > span {
  display: block;
  margin-bottom: 32px;
  color: var(--product-muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.product-note h3 {
  margin: 0 0 12px;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -.025em;
  line-height: 1.15;
}

.product-note p {
  margin: 0;
  color: var(--product-muted);
  font-size: 12px;
  line-height: 1.65;
}

.product-channel {
  min-height: 112px;
  display: grid;
  grid-template-columns: 50px minmax(220px, 1fr) minmax(110px, .4fr) auto;
  gap: 22px;
  align-items: center;
  padding: 20px 22px;
  border: 1px solid var(--product-line);
  background: var(--product-paper);
  transition: background 150ms ease, border-color 150ms ease;
}

.product-channel:hover {
  border-color: var(--product-ink);
  background: var(--product-soft);
}

.product-channel-logo {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border: 1px solid var(--product-ink);
  background: transparent;
  color: var(--product-ink);
  font-size: 17px;
  font-weight: 900;
}

.product-channel-copy {
  display: flex;
  flex-direction: column;
}

.product-channel-copy small {
  margin-bottom: 4px;
  color: var(--product-muted);
  font-size: 9px;
  font-weight: 820;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.product-channel-copy strong {
  margin-bottom: 3px;
  font-size: 17px;
}

.product-channel-copy em,
.product-channel-region {
  color: var(--product-muted);
  font-size: 11px;
  font-style: normal;
}

.product-channel b {
  font-size: 11px;
}

.product-channel-pending {
  margin: 12px 0 0;
  color: var(--product-muted);
  font-size: 11px;
}

.product-mobile-cta {
  display: none;
}

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

.product-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr) 56px;
  align-items: center;
  gap: 16px;
  padding: 66px clamp(16px, 4vw, 48px) 30px;
  background: rgba(5, 5, 5, .96);
  color: #fff;
}

.product-lightbox.is-single {
  grid-template-columns: minmax(0, 1fr);
}

.lightbox-open {
  overflow: hidden;
}

.product-lightbox figure {
  min-width: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0;
}

.product-lightbox img {
  max-width: 100%;
  max-height: calc(100vh - 120px);
  object-fit: contain;
}

.product-lightbox figcaption {
  margin-top: 10px;
  color: rgba(255, 255, 255, .65);
  font-size: 11px;
}

.product-lightbox-close,
.product-lightbox-nav {
  border: 1px solid rgba(255, 255, 255, .35);
  background: transparent;
  color: #fff;
  cursor: pointer;
}

.product-lightbox-close {
  width: 48px;
  height: 48px;
  position: absolute;
  top: 14px;
  right: 16px;
  font-size: 26px;
}

.product-lightbox-nav {
  width: 52px;
  height: 52px;
  font-size: 30px;
}

.product-missing {
  min-height: 70vh;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 18px;
}

@media (max-width: 960px) {
  .product-overview {
    grid-template-columns: 1fr;
  }

  .product-gallery {
    position: static;
  }

  .product-summary {
    padding-top: 0;
  }

  .product-notes-heading,
  .product-section-heading {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .product-notes-heading > span,
  .product-section-heading > span {
    max-width: 620px;
  }

  .product-notes-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-note:nth-child(3) {
    padding-left: 0;
    border-left: 0;
  }

  .product-channel {
    grid-template-columns: 50px 1fr auto;
  }

  .product-channel-region {
    display: none;
  }
}

@media (max-width: 760px) {
  .product-page {
    padding-top: 64px;
    padding-bottom: 76px;
  }

  .product-shell {
    width: calc(100% - 36px);
  }

  .product-breadcrumbs {
    min-height: 56px;
  }

  .product-overview {
    gap: 24px;
    padding-bottom: 52px;
  }

  .product-gallery-thumbs {
    margin-inline: -18px;
    padding-inline: 18px;
  }

  .product-gallery-thumb {
    width: 60px;
    height: 60px;
  }

  .product-gallery-dots {
    display: none;
  }

  .product-summary h1 {
    font-size: 44px;
  }

  .product-specs dl > div {
    grid-template-columns: 1fr 1fr;
  }

  .product-notes,
  .product-sales {
    padding-block: 56px;
  }

  .product-notes-grid {
    grid-template-columns: 1fr;
  }

  .product-note,
  .product-note + .product-note,
  .product-note:nth-child(3) {
    min-height: 0;
    padding: 22px 0;
    border-left: 0;
  }

  .product-note > span {
    margin-bottom: 18px;
  }

  .product-channel {
    min-height: 0;
    grid-template-columns: 46px 1fr;
    gap: 14px;
    padding: 18px;
  }

  .product-channel-logo {
    width: 46px;
    height: 46px;
  }

  .product-channel b {
    grid-column: 2;
  }

  .product-mobile-cta {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 45;
    min-height: 68px;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 12px;
    padding: 9px 14px max(9px, env(safe-area-inset-bottom));
    border-top: 1px solid var(--product-line);
    background: rgba(255, 255, 255, .96);
    backdrop-filter: blur(14px);
  }

  .product-mobile-cta > span {
    display: flex;
    flex-direction: column;
  }

  .product-mobile-cta small {
    color: var(--product-muted);
    font-size: 10px;
    font-weight: 800;
  }

  .product-mobile-cta strong {
    font-size: 15px;
  }

  .product-mobile-cta a {
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    padding: 0 16px;
    background: var(--product-ink);
    color: #fff;
    font-size: 12px;
    font-weight: 820;
  }

  .product-lightbox {
    grid-template-columns: 42px minmax(0, 1fr) 42px;
    gap: 5px;
    padding-inline: 7px;
  }

  .product-lightbox-nav {
    width: 40px;
    height: 46px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .product-channel,
  .product-cta,
  .product-accordion-icon {
    transition: none;
  }
}
