/* Popcorn Shed Theme - tokens from 源码.txt (:root + Concept theme) */
:root {
  --color-base-text: 23 23 23;
  --color-base-highlight: 247 188 43;
  --color-base-background: 255 255 255;
  --color-base-button: 31 38 101;
  --color-base-button-gradient: #1f2665;
  --color-base-button-text: 255 255 255;
  --color-shadow: 247 188 43;
  --color-price: 23 23 23;
  --color-sale-price: 192 21 53;
  --color-sale-tag: 192 21 53;
  --color-rating: 247 188 43;
  --color-placeholder: 241 242 249;
  --color-drawer-background: 252 252 255;

  --color-button-background: var(--color-base-button);
  --color-button-text: var(--color-base-button-text);
  --color-button-border: var(--color-base-button);
  --color-button-gradient: var(--color-base-button-gradient);

  --font-heading: "EB Garamond", Georgia, serif;
  --font-body: Poppins, -apple-system, sans-serif;

  --page-width: 1200px;
  --page-padding: 1.25rem;
  --rounded-button: 0.375rem;
  --rounded-card: 0.625rem;
  --buttons-radius: var(--rounded-button);
  --buttons-border-width: 1px;
  --buttons-border-opacity: 1;
  --buttons-shadow-opacity: 0.7;
  --buttons-shadow-horizontal-offset: 4px;
  --buttons-shadow-vertical-offset: -4px;
  --shadow-horizontal-offset: var(--buttons-shadow-horizontal-offset);
  --shadow-vertical-offset: var(--buttons-shadow-vertical-offset);
  --shadow-opacity: var(--buttons-shadow-opacity);

  --animation-primary: 0.5s cubic-bezier(0.3, 1, 0.3, 1);
  --animation-fast: 0.3s cubic-bezier(0.7, 0, 0.3, 1);
  --transform-origin-start: left;
  --transform-origin-end: right;

  --header-height: 4.25rem;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
*,
*::before,
*::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: clip;
  width: 100%;
  max-width: 100%;
}
body {
  font-family: var(--font-body);
  font-size: 0.875rem;
  line-height: 1.2;
  color: rgb(var(--color-base-text));
  background: rgb(var(--color-base-background));
  overflow-x: clip;
  width: 100%;
  max-width: 100%;
  padding-bottom: 4.5rem;
}
main,
.section,
.featured-product,
.movie-bundle,
.build-bundle {
  max-width: 100%;
  min-width: 0;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
}
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
[hidden] { display: none !important; }
.page-width {
  width: 100%;
  max-width: var(--page-width);
  margin: 0 auto;
  padding: 0 var(--page-padding);
  box-sizing: border-box;
  min-width: 0;
}

/* ===== Buttons (Concept .button + local .btn, from 源码/theme extract) ===== */
.btn,
.button {
  --shadow-horizontal-offset: var(--buttons-shadow-horizontal-offset);
  --shadow-vertical-offset: var(--buttons-shadow-vertical-offset);
  --shadow-opacity: var(--buttons-shadow-opacity);
  cursor: pointer;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  line-height: 1;
  padding: 0.875rem 1.75rem;
  font-family: var(--font-body);
  font-size: clamp(0.8125rem, 0.8115rem + 0.1587vw, 0.9375rem);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border-radius: var(--buttons-radius);
  border: none;
  max-height: 3.75rem;
  transition: box-shadow var(--animation-primary), color var(--animation-primary), opacity var(--animation-fast);
}
.btn--primary,
.button--primary {
  color: rgb(var(--color-button-text));
  background: var(--color-button-gradient);
  background-color: rgb(var(--color-button-background));
  box-shadow: var(--shadow-horizontal-offset) var(--shadow-vertical-offset) rgb(var(--color-shadow) / var(--shadow-opacity));
}
.btn--secondary,
.button--secondary {
  background: transparent;
  color: #fff;
  border: 1px solid #fff;
  box-shadow: none;
}
.btn--outline {
  background: transparent;
  color: rgb(var(--color-base-text));
  border: 1px solid rgb(var(--color-base-text));
  box-shadow: none;
}
.btn--full,
.button--full {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  display: inline-flex;
}
.btn--sm { padding: 0.625rem 1.25rem; font-size: 0.75rem; }

.btn .btn-text,
.button .btn-text {
  position: relative;
  z-index: 1;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  color: currentColor;
  transition: color var(--animation-primary);
  transition-delay: 0.1s;
}
.btn .btn-fill,
.button .btn-fill {
  display: none;
  border-radius: 50%;
  width: 150%;
  height: 200%;
  top: -50%;
  left: -25%;
  position: absolute;
  transform: translate3d(0, -76%, 0);
  pointer-events: none;
  z-index: 0;
  will-change: transform;
  transition: transform var(--animation-primary);
}
.button--sm {
  padding: 0.7rem 1.15rem;
  font-size: 0.8rem;
  max-height: 3.25rem;
}
.button.icon-with-text .btn-text { gap: 0.55rem; }
.button .icon-arrow { flex-shrink: 0; transition: transform var(--animation-fast); }
.js [data-button-hover="standard"] .button.is-hovered .icon-arrow,
.js [data-button-hover="standard"] .button:hover .icon-arrow {
  transform: translateX(3px);
}
.btn--primary .btn-fill,
.button--primary .btn-fill {
  background-color: rgb(var(--color-button-text));
}
.btn--secondary .btn-fill,
.button--secondary .btn-fill {
  background-color: rgb(var(--color-button-background));
}

/* data-button-hover="standard" — yellow shadow collapses + fill slides in */
@media (pointer: fine) {
  [data-button-hover="standard"] .btn--primary .btn-fill,
  [data-button-hover="standard"] .button--primary .btn-fill,
  [data-button-hover="standard"] .btn--secondary .btn-fill,
  [data-button-hover="standard"] .button--secondary .btn-fill {
    display: block;
  }
  .js [data-button-hover="standard"] .btn--primary:hover:not([disabled]),
  .js [data-button-hover="standard"] .button--primary:hover:not([disabled]),
  .js [data-button-hover="standard"] .btn--primary.is-hovered:not([disabled]),
  .js [data-button-hover="standard"] .button--primary.is-hovered:not([disabled]) {
    --shadow-horizontal-offset: 0;
    --shadow-vertical-offset: 0;
    color: rgb(var(--color-button-background));
  }
  .js [data-button-hover="standard"] .btn--secondary:hover:not([disabled]),
  .js [data-button-hover="standard"] .button--secondary:hover:not([disabled]) {
    --shadow-horizontal-offset: 0;
    --shadow-vertical-offset: 0;
    color: rgb(var(--color-button-text));
  }
  .js [data-button-hover="standard"] .btn--primary.is-pressed:not([disabled]),
  .js [data-button-hover="standard"] .button--primary.is-pressed:not([disabled]),
  .js [data-button-hover="standard"] .btn--primary:active:not([disabled]),
  .js [data-button-hover="standard"] .button--primary:active:not([disabled]) {
    --shadow-horizontal-offset: 0;
    --shadow-vertical-offset: 0;
    transform: scale(0.98);
  }
  .js [data-button-hover="standard"] .btn--primary.is-loading,
  .js [data-button-hover="standard"] .button--primary.is-loading {
    opacity: 0.75;
    pointer-events: none;
  }
}

/* Title underline (reversed-link from 源码) */
.reversed-link {
  --reversed-link-gap: min(100%, 1.35em);
  background: linear-gradient(to var(--transform-origin-end), currentColor, currentColor) 0 var(--reversed-link-gap) / 0 1px no-repeat;
  background-position-x: var(--transform-origin-end);
  transition: background-size var(--animation-primary);
}
@media (pointer: fine) {
  .reversed-link:hover {
    background-position-x: var(--transform-origin-start);
    background-size: 100% 1px;
  }
}

/* ===== Announcement Bar (scrolling marquee) ===== */
.announcement-bar {
  --topbar-height: 3rem;
  background: #1f2665;
  color: #fafafa;
  height: var(--topbar-height);
  overflow: hidden;
  position: relative;
}
@media (min-width: 1536px) {
  .announcement-bar { --topbar-height: 3.5rem; }
}
.announcement-bar__viewport {
  height: 100%;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, #000 4%, #000 96%, transparent);
}
.announcement-bar__track {
  display: flex;
  width: max-content;
  height: 100%;
  animation: announcement-marquee 28s linear infinite;
  will-change: transform;
}
.announcement-bar__group {
  display: flex;
  align-items: center;
  height: 100%;
  flex-shrink: 0;
  padding-inline: 2rem;
  gap: 0;
}
.announcement-bar__group > .announcement-bar__item + .announcement-bar__item::before {
  content: '•';
  margin-inline: 1.75rem;
  opacity: 0.55;
  font-size: 0.625rem;
}
.announcement-bar__item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
  white-space: nowrap;
}
.announcement-bar__icon {
  display: none;
  flex-shrink: 0;
  width: 1rem;
  height: 1rem;
  opacity: 0.9;
}
.announcement-bar__icon svg { width: 100%; height: 100%; display: block; }
@media (min-width: 768px) {
  .announcement-bar__icon { display: flex; }
}
.announcement-bar__text {
  margin: 0;
  font-size: 0.75rem;
  line-height: 1.2;
  letter-spacing: 0.01em;
}
.announcement-bar__link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: inherit;
  text-decoration: none;
  transition: opacity 0.2s;
}
.announcement-bar__link:hover { opacity: 0.85; }
.announcement-bar__highlight {
  position: relative;
  display: inline-block;
  font-style: normal;
}
.announcement-bar__highlight strong {
  position: relative;
  z-index: 1;
  font-weight: 700;
}
.announcement-bar__scribble {
  position: absolute;
  left: 50%;
  top: 55%;
  width: calc(100% + 1.1rem);
  height: calc(100% + 0.85rem);
  transform: translate(-50%, -50%);
  color: rgb(var(--color-base-highlight));
  pointer-events: none;
  overflow: visible;
}
@keyframes announcement-marquee {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-50%, 0, 0); }
}
@media (prefers-reduced-motion: reduce) {
  .announcement-bar__track { animation: none; justify-content: center; width: 100%; }
  .announcement-bar__group:last-child { display: none; }
  .announcement-bar__viewport { mask-image: none; }
}

/* ===== Header ===== */
.header {
  position: sticky; top: 0; z-index: 100;
  background: #fff;
  border-bottom: 1px solid rgba(var(--color-base-text), 0.08);
}
.header__inner {
  display: grid;
  grid-template-columns: 2.75rem 1fr 5.5rem;
  align-items: center;
  height: var(--header-height);
}
.header__logo { display: flex; justify-content: center; align-items: center; min-height: var(--header-height); }
.header__logo img { height: 3.65rem; width: auto; max-width: none; object-fit: contain; display: block; }
.header__icons { display: flex; justify-content: flex-end; align-items: center; }
.header__icon {
  width: 2.75rem; height: 2.75rem;
  display: flex; align-items: center; justify-content: center;
  color: rgb(var(--color-base-text));
  position: relative;
}
.cart-count {
  position: absolute; top: 0.25rem; right: 0.25rem;
  background: rgb(var(--color-base-button));
  color: #fff; font-size: 0.625rem; font-weight: 700;
  min-width: 1rem; height: 1rem; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}

/* ===== Drawers ===== */
.drawer-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.55);
  z-index: 290; opacity: 0; visibility: hidden;
  pointer-events: none;
  transition: opacity 0.45s cubic-bezier(.7,0,.2,1), visibility 0.45s;
}
.drawer-overlay.is-open {
  opacity: 1; visibility: visible; pointer-events: auto;
}
.drawer {
  position: fixed; z-index: 300;
  background: #fff;
  display: flex; flex-direction: column;
  pointer-events: none;
  will-change: transform;
}
.drawer.is-open { pointer-events: auto; }
.drawer__handle {
  display: none;
  width: 2.5rem; height: 0.25rem;
  margin: 0.65rem auto 0.15rem;
  border-radius: 999px;
  background: rgba(var(--color-base-text), 0.18);
  flex-shrink: 0;
}

/* Mobile: bottom sheet — slides UP (matches Concept theme) */
@media (max-width: 767px) {
  .drawer {
    left: 0; right: 0; bottom: 0; top: auto;
    width: 100%;
    height: auto;
    max-height: calc(100% - 3.5rem);
    min-height: min(72vh, 36rem);
    border-radius: 1.35rem 1.35rem 0 0;
    box-shadow: 0 -12px 40px rgba(0,0,0,0.18);
    transform: translate3d(0, 105%, 0);
    transition: transform 0.6s cubic-bezier(.7, 0, .2, 1);
  }
  .drawer--menu,
  .drawer--cart,
  .drawer--search {
    left: 0; right: 0;
    width: 100%;
    transform: translate3d(0, 105%, 0);
    border-radius: 1.35rem 1.35rem 0 0;
  }
  .drawer.is-open,
  .drawer--menu.is-open,
  .drawer--cart.is-open,
  .drawer--search.is-open {
    transform: translate3d(0, 0, 0);
  }
  .drawer__handle { display: block; }
  .drawer__header { padding-top: 0.35rem; }
  .drawer__body { padding-bottom: 1.5rem; }
  body.drawer-open .mobile-bar {
    transform: translate3d(0, 110%, 0);
    pointer-events: none;
  }
  .mobile-bar {
    transition: transform 0.45s cubic-bezier(.7,0,.2,1);
  }
}

/* Desktop: side drawers */
@media (min-width: 768px) {
  .drawer {
    top: 0; height: 100vh;
    width: min(92vw, 22rem);
    box-shadow: 0 0 40px rgba(0,0,0,0.15);
    transition: transform 0.55s cubic-bezier(.7, 0, .2, 1);
  }
  .drawer--menu {
    left: 0; right: auto;
    transform: translate3d(-105%, 0, 0);
    border-radius: 0 1rem 1rem 0;
  }
  .drawer--cart,
  .drawer--search {
    right: 0; left: auto;
    width: min(100%, 26rem);
    transform: translate3d(105%, 0, 0);
    border-radius: 1rem 0 0 1rem;
  }
  .drawer--menu.is-open,
  .drawer--cart.is-open,
  .drawer--search.is-open {
    transform: translate3d(0, 0, 0);
  }
}
.drawer__header {
  display: flex; justify-content: space-between; align-items: center;
  padding: 1rem 1.25rem;
}
.drawer__header--menu { border-bottom: none; justify-content: flex-end; }
.drawer__title {
  font-family: var(--font-body); font-size: 1.125rem; font-weight: 600;
}
.drawer__close {
  font-size: 1rem; width: 2.25rem; height: 2.25rem;
  display: flex; align-items: center; justify-content: center;
}
.drawer__close--circle {
  border-radius: 50%;
  background: rgb(var(--color-placeholder));
  color: rgb(var(--color-base-text));
}
.drawer--menu {
  overflow: hidden;
}
.drawer__panels {
  position: relative;
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.drawer__panel {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 0;
  background: #fff;
  width: 100%;
}
.drawer__submenu {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex !important;
  flex-direction: column;
  background: #fff;
  transform: translate3d(104%, 0, 0);
  visibility: hidden;
  pointer-events: none;
  transition: transform 0.45s cubic-bezier(.7, 0, .2, 1), visibility 0.45s;
}
.drawer__submenu.is-open {
  transform: translate3d(0, 0, 0);
  visibility: visible;
  pointer-events: auto;
}
.drawer--menu.submenu-open .drawer__panel--root {
  pointer-events: none;
}
.drawer__back {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 500;
  color: rgb(var(--color-base-text));
  background: none;
  border: none;
  padding: 0.25rem 0;
  cursor: pointer;
}
.drawer__body { flex: 1; overflow-y: auto; padding: 0.5rem 1.5rem 1rem; }
.drawer__body--menu { padding-top: 0; }
.drawer__footer { padding: 1rem 1.25rem; border-top: 1px solid rgba(var(--color-base-text), 0.08); }
.drawer__footer--menu {
  border-top: 1px solid rgba(var(--color-base-text), 0.1);
  padding: 1.25rem 1.5rem 1.5rem;
}
.drawer__link {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%;
  padding: 1.05rem 0;
  font-family: var(--font-body); font-weight: 400;
  font-size: 1rem; color: rgb(var(--color-base-text));
  border: none;
  border-bottom: 1px solid rgba(var(--color-base-text), 0.08);
  background: none;
  text-align: left;
  text-transform: none; letter-spacing: 0;
  cursor: pointer;
}
.drawer__link span { color: rgba(var(--color-base-text), 0.45); font-size: 1.25rem; line-height: 1; }
.drawer__link--parent:active { background: rgb(var(--color-placeholder)); }
.drawer__link--sale { color: inherit; }

/* Collection page */
.collection-page { padding: 1.5rem 0 3rem; }
.collection-page__header { margin-bottom: 1.5rem; }
.collection-page__crumb {
  font-size: 0.75rem;
  color: rgba(var(--color-base-text), 0.55);
  margin-bottom: 0.5rem;
}
.collection-page__crumb a { text-decoration: underline; }
.collection-page__title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  letter-spacing: -0.03em;
  margin-bottom: 0.35rem;
}
.collection-page__count {
  font-size: 0.8125rem;
  color: rgba(var(--color-base-text), 0.55);
}
.collection-page__empty { padding: 2rem 0; color: rgba(var(--color-base-text), 0.65); }

.menu-currency {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; padding: 0.75rem 0 1rem;
  font-size: 0.9375rem; color: rgb(var(--color-base-text));
  border-bottom: 1px solid rgba(var(--color-base-text), 0.08);
  margin-bottom: 1rem;
}
.menu-footer-row {
  display: flex; align-items: center; justify-content: space-between; gap: 0.75rem;
}
.menu-login {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgb(var(--color-base-button)); color: #fff;
  padding: 0.7rem 1.1rem; border-radius: 0.5rem;
  font-size: 0.875rem; font-weight: 500;
}
.menu-social { display: flex; align-items: center; gap: 0.75rem; }
.menu-social a { color: rgb(var(--color-base-text)); }

/* Search drawer */
.drawer__header--search { gap: 0.75rem; border-bottom: 1px solid rgba(var(--color-base-text), 0.08); }
.search-form {
  flex: 1; display: flex; align-items: center; gap: 0.5rem;
  background: rgb(var(--color-placeholder));
  border-radius: 999px; padding: 0.65rem 1rem;
}
.search-form input {
  flex: 1; border: none; background: transparent; outline: none;
  font-family: var(--font-body); font-size: 0.9375rem;
}
.search-hint { text-align: center; color: rgba(var(--color-base-text), 0.45); padding: 2rem 0; }
.search-result {
  display: flex; gap: 0.75rem; align-items: center;
  padding: 0.75rem 0; border-bottom: 1px solid rgba(var(--color-base-text), 0.08);
}
.search-result img {
  width: 3.5rem; height: 3.5rem; object-fit: cover; border-radius: 0.5rem;
  background: rgb(var(--color-placeholder));
}
.search-result strong { display: block; font-size: 0.875rem; font-weight: 500; margin-bottom: 0.2rem; }
.search-result span { font-size: 0.8125rem; color: rgba(var(--color-base-text), 0.65); }

/* Cart drawer */
.cart-empty-wrap { padding: 1.5rem 0 0.5rem; }
.cart-empty {
  text-align: center; color: rgb(var(--color-base-text));
  font-size: 1rem; font-weight: 500; padding: 1rem 0 0.5rem;
}
.cart-empty-hint {
  text-align: center; font-size: 0.875rem;
  color: rgba(var(--color-base-text), 0.6); margin-bottom: 1.25rem;
}
.cart-suggestions { display: flex; flex-direction: column; gap: 0.625rem; }
.cart-suggestions a {
  display: block; text-align: center; padding: 0.95rem 1rem;
  background: rgb(var(--color-base-button)); color: #fff;
  font-size: 0.8125rem; font-weight: 500; letter-spacing: 0.04em;
  text-transform: uppercase; border-radius: 0.375rem;
}
.cart-drawer-item { display: flex; gap: 0.75rem; padding: 1rem 0; border-bottom: 1px solid rgba(var(--color-base-text), 0.08); }
.cart-drawer-item__image { width: 5rem; height: 5rem; flex-shrink: 0; background: rgb(var(--color-placeholder)); border-radius: var(--rounded-card); overflow: hidden; }
.cart-drawer-item__image img { width: 100%; height: 100%; object-fit: cover; }
.cart-drawer-item__name { font-size: 0.875rem; font-weight: 500; margin-bottom: 0.25rem; }
.cart-drawer-item__price { font-weight: 600; margin-bottom: 0.5rem; }
.cart-drawer-item__qty { display: flex; align-items: center; gap: 0.75rem; }
.cart-drawer-item__qty button { width: 2rem; height: 2rem; border: 1px solid rgba(var(--color-base-text), 0.15); border-radius: 0.25rem; }
.cart-drawer-subtotal { display: flex; justify-content: space-between; font-weight: 700; font-size: 1rem; margin-bottom: 0.5rem; }
.cart-drawer-shipping { font-size: 0.8125rem; color: rgba(var(--color-base-text), 0.6); margin-bottom: 1rem; }
.cart-drawer-shipping--free { color: #2e7d32; }

/* ===== Hero Stack ===== */
.hero-stack { background: #fff; }
.hero-stack__media {
  position: relative; width: 100%; aspect-ratio: 1 / 1;
  overflow: hidden; background: #eee;
}
.hero-stack__slide {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.6s ease;
  background: #f4f5f9;
}
.hero-stack__slide.is-active { opacity: 1; z-index: 1; }
.hero-stack__slide img {
  width: auto; height: auto;
  max-width: 100%; max-height: 100%;
  object-fit: contain;
  object-position: center;
}
.hero-stack__panel {
  background: rgb(var(--color-base-button));
  color: #fff; padding: 2rem 1.25rem 2.25rem;
}
.hero-stack__inner { max-width: 36rem; }
@media (min-width: 1024px) {
  .hero-stack {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    align-items: stretch;
    min-height: clamp(28rem, 52vh, 36rem);
  }
  .hero-stack__media {
    aspect-ratio: auto;
    min-height: clamp(28rem, 52vh, 36rem);
  }
  .hero-stack__slide img {
    width: 100%;
    height: 100%;
    max-width: none;
    max-height: none;
    object-fit: cover;
  }
  .hero-stack__panel {
    display: flex;
    align-items: center;
    padding: 3rem 3.5rem;
  }
  .hero-stack__inner { max-width: 28rem; }
  .hero-stack__title { font-size: clamp(2.25rem, 3.2vw, 3.25rem); }
}
.hero-stack__badge {
  font-size: 0.8125rem; opacity: 0.95; margin-bottom: 0.85rem; line-height: 1.4;
}
.hero-stack__title {
  font-family: var(--font-heading); font-weight: 700;
  font-size: clamp(1.75rem, 5vw, 2.5rem);
  line-height: 1.15; letter-spacing: -0.02em;
  margin-bottom: 0.85rem;
}
.hero-stack__text {
  font-size: 0.9375rem; line-height: 1.55;
  opacity: 0.92; margin-bottom: 1.5rem;
}
.hero-stack__buttons {
  display: flex; flex-wrap: wrap; gap: 0.75rem;
}
/* Hero CTAs: cream/red look on navy panel + Concept fill hover */
.hero-stack__buttons .button--primary {
  --color-button-background: 247 241 232;
  --color-button-text: 192 21 53;
  --color-shadow: 247 188 43;
  text-transform: none;
  letter-spacing: 0.01em;
  font-weight: 600;
  font-size: 0.875rem;
  border-radius: 0.45rem;
}
.hero-stack__buttons .button--primary .btn-fill {
  background-color: #1f2665;
}
.js [data-button-hover="standard"] .hero-stack__buttons .button--primary.is-hovered,
.js [data-button-hover="standard"] .hero-stack__buttons .button--primary:hover {
  color: #f7f1e8;
}

/* ===== Trust Carousel ===== */
.trust-carousel {
  background: #f3f4f8;
  padding: 1.75rem 1.25rem 1.25rem;
  text-align: center;
}
.trust-carousel__track { position: relative; min-height: 4.5rem; }
.trust-carousel__item {
  position: absolute; left: 0; right: 0; top: 0;
  opacity: 0; transform: translateY(8px);
  transition: opacity 0.4s, transform 0.4s;
  pointer-events: none;
}
.trust-carousel__item.is-active {
  position: relative; opacity: 1; transform: none; pointer-events: auto;
}
.trust-carousel__item strong {
  display: block; color: #c01535;
  font-family: var(--font-heading); font-size: 1.125rem;
  font-weight: 700; margin-bottom: 0.35rem;
}
.trust-carousel__item p {
  font-size: 0.875rem; color: rgba(var(--color-base-text), 0.65);
}
.trust-carousel__dots {
  display: flex; justify-content: center; gap: 0.45rem;
  margin-top: 1rem;
}
.trust-carousel__dots button {
  width: 0.45rem; height: 0.45rem; border-radius: 50%;
  background: rgba(var(--color-base-text), 0.22);
  padding: 0; transition: background 0.2s, transform 0.2s;
}
.trust-carousel__dots button.is-active {
  background: rgb(var(--color-base-text));
  transform: scale(1.15);
}
@media (min-width: 768px) {
  .trust-carousel {
    padding: 2rem 1.25rem 2.25rem;
  }
  .trust-carousel__track {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem 2rem;
    min-height: 0;
  }
  .trust-carousel__item {
    position: relative;
    opacity: 1 !important;
    transform: none !important;
    pointer-events: auto;
  }
  .trust-carousel__item strong { font-size: 1rem; }
  .trust-carousel__dots { display: none; }
}

/* ===== Sections ===== */
.section { padding: 3rem 0; }
.section--dark { background: rgb(var(--color-base-button)); color: #fff; }
.section--blog { background: rgb(var(--color-placeholder)); }
.section__title {
  font-family: var(--font-heading); font-weight: 400;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  letter-spacing: -0.03em; line-height: 1;
  text-align: center; margin-bottom: 2rem;
}
.section__title--white { color: #fff; }
.section__title em { font-style: italic; }
.section__header { text-align: center; margin-bottom: 2rem; }
.section__subtitle { text-align: center; color: rgba(var(--color-base-text), 0.65); margin-top: -1.5rem; margin-bottom: 2rem; font-size: 0.9375rem; }
.section--dark .section__subtitle { color: rgba(255,255,255,0.75); }
.section__link { display: block; text-align: center; margin-top: 2rem; font-weight: 500; text-decoration: underline; text-underline-offset: 3px; }

/* View All — pill primary with fill hover */
.view-all-btn.button {
  display: flex;
  margin: 1.5rem auto 0;
  max-width: 14rem;
  width: 100%;
  border-radius: 999px;
  text-transform: none;
  letter-spacing: 0.02em;
  font-weight: 500;
  font-size: 0.875rem;
}
.view-all-btn .btn-text svg { color: rgb(var(--color-base-highlight)); }
.view-all-btn.is-hovered .btn-text svg,
.view-all-btn:hover .btn-text svg { color: currentColor; }

/* ===== Product Grid ===== */
.product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  background: transparent;
}
@media (min-width: 768px) {
  .product-grid { grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
}
/* Homepage bestsellers: show all cards in a wrapping grid (no horizontal swipe) */
.product-grid--best {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  overflow: visible;
  margin-inline: 0;
  padding-inline: 0;
  flex-wrap: unset;
}
.product-grid--best .product-card {
  flex: unset;
  max-width: none;
  width: auto;
  scroll-snap-align: unset;
}
@media (min-width: 768px) {
  .product-grid--best {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
  }
}
.product-grid--scroll {
  display: flex !important;
  flex-wrap: nowrap;
  overflow-x: auto;
  overflow-y: hidden;
  gap: 0.75rem;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  background: transparent;
  padding-bottom: 0.35rem;
  margin-inline: -1rem;
  padding-inline: 1rem;
  scrollbar-width: none;
  overscroll-behavior-x: contain;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}
.product-grid--scroll::-webkit-scrollbar { display: none; }
/* Peek next card so swipe is obvious (Concept swipe-on-mobile) */
.product-grid--scroll .product-card {
  flex: 0 0 min(72%, 16.5rem);
  width: min(72%, 16.5rem);
  min-width: 12.5rem;
  max-width: 18rem;
  scroll-snap-align: start;
}
@media (min-width: 480px) {
  .product-grid--scroll .product-card {
    flex: 0 0 min(46%, 15rem);
    width: min(46%, 15rem);
    min-width: 13rem;
    max-width: none;
  }
}
@media (min-width: 768px) {
  .product-grid--scroll {
    margin-inline: 0;
    padding-inline: 0;
    gap: 1.25rem;
  }
  .product-grid--scroll .product-card {
    flex: 0 0 calc((100% - 3.75rem) / 4);
    width: calc((100% - 3.75rem) / 4);
    min-width: 12.5rem;
  }
}
@media (min-width: 1100px) {
  .product-grid--scroll .product-card {
    flex: 0 0 calc((100% - 5rem) / 5);
    width: calc((100% - 5rem) / 5);
    min-width: 12.5rem;
  }
}

.product-slider { position: relative; }
.product-slider__btn {
  display: none;
  position: absolute;
  top: 28%;
  z-index: 4;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(var(--color-base-text), 0.1);
  box-shadow: 0 4px 14px rgb(0 0 0 / 0.1);
  place-items: center;
  color: rgb(var(--color-base-text));
}
.product-slider__btn--prev { left: -0.4rem; }
.product-slider__btn--next { right: -0.4rem; }
@media (min-width: 768px) {
  .product-slider__btn { display: grid; }
}
.product-slider__btn:disabled { opacity: 0.35; pointer-events: none; }

/* ===== Product Card (structure from 源码.txt) ===== */
.product-card {
  background: #fff;
  display: flex;
  flex-direction: column;
  border-radius: var(--rounded-card);
  overflow: hidden;
  position: relative;
  border: 0.1rem solid rgb(var(--color-base-text) / 0.05);
  box-shadow: -0.2rem 0.2rem 0 rgb(var(--color-base-text) / 0.1);
}
.product-card__media {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #fff;
}
/* Flex-center images — avoids mobile Safari crop from absolute + img{height:auto} */
.product-card__image-link {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #fff;
  padding: 0.65rem;
  box-sizing: border-box;
  min-width: 0;
  min-height: 0;
}
.product-card__img,
.product-card__img--primary {
  position: static !important;
  inset: auto !important;
  display: block;
  width: auto !important;
  height: auto !important;
  max-width: 100% !important;
  max-height: 100% !important;
  min-width: 0;
  min-height: 0;
  object-fit: contain;
  padding: 0 !important;
  background: transparent;
  transition: opacity var(--animation-primary), transform var(--animation-primary);
}
.product-card__secondary {
  position: absolute;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 0.65rem;
  box-sizing: border-box;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  overflow: hidden;
  background: #fff;
}
.product-card__secondary img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  padding: 0;
  transform: scale(1);
  transition: transform var(--animation-primary);
  background: transparent;
}
@media (min-width: 768px) {
  .product-card__secondary { display: flex; }
}
@media (pointer: fine) {
  .product-card__secondary {
    transition: opacity var(--animation-primary), visibility var(--animation-primary);
  }
  .product-card__media:hover .product-card__img--primary,
  .product-card__media:hover .product-card__secondary img {
    transform: scale(1.03);
  }
  .product-card:has(.product-card__secondary) .product-card__media:hover .product-card__img--primary {
    opacity: 0;
  }
  .product-card__media:hover .product-card__secondary {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
}
@media (min-width: 768px) {
  .product-card__image-link { padding: 0; }
  .product-card__secondary { padding: 0; }
  .product-card__img,
  .product-card__img--primary,
  .product-card__secondary img {
    width: 100% !important;
    height: 100% !important;
    max-width: none !important;
    max-height: none !important;
    object-fit: cover;
  }
}
.product-card__rating {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  z-index: 4;
  background: rgb(255 255 255 / 0.75);
  backdrop-filter: blur(12px);
  padding: 0.25rem 0.5rem;
  border-radius: 999px;
  font-size: 0.6875rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  pointer-events: none;
}
.product-card__badge {
  background: rgb(var(--color-sale-tag));
  color: #fff;
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 0.2rem 0.5rem;
  border-radius: 999px;
  pointer-events: none;
}

/* quick-add — 源码: md:opacity-0 until card hover */
.quick-add {
  position: absolute;
  inset-inline: 0;
  inset-block-end: 0;
  width: 100%;
  z-index: 5;
  display: flex;
  justify-content: flex-end;
  padding: 0.75rem;
  pointer-events: none;
}
.quick-add .button,
.quick-add .btn {
  pointer-events: auto;
  width: auto;
  height: auto;
  padding: 0.75rem 1.125rem;
  text-transform: none;
  letter-spacing: 0;
  font-size: 0.8125rem;
  border-radius: var(--rounded-button);
}
.quick-add .btn-text .icon-cart {
  width: 1.125rem;
  height: 1.125rem;
  display: block;
}
.quick-add .btn-text .quick-add__label { display: none; }
@media (min-width: 768px) {
  .quick-add {
    justify-content: center;
    padding: 0.85rem 0.75rem 1rem;
    background: linear-gradient(to top, rgb(31 38 101 / 0.72) 0%, rgb(31 38 101 / 0.35) 55%, transparent 100%);
    transform: translateY(0.35rem);
    opacity: 0;
    transition: opacity var(--animation-primary), transform var(--animation-primary);
  }
  .quick-add .button,
  .quick-add .btn {
    opacity: 1;
    width: 100%;
    justify-content: center;
    box-shadow: 0 2px 8px rgb(0 0 0 / 0.12);
  }
  .quick-add .btn-text .icon-cart { display: none; }
  .quick-add .btn-text .quick-add__label { display: block; }
  @media (pointer: fine) {
    .product-card:hover .quick-add {
      opacity: 1;
      transform: translateY(0);
    }
  }
}
@media (max-width: 767px) {
  .quick-add .button,
  .quick-add .btn {
    border-radius: 999px;
    padding: 0.7rem;
    min-width: 2.5rem;
    min-height: 2.5rem;
  }
}

.product-card__info,
.product-card__content {
  padding: 0.85rem 0.9rem 1rem;
  background: rgb(var(--color-placeholder));
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.product-card__details {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.35rem;
  width: 100%;
  min-width: 0;
}
@media (min-width: 768px) {
  .product-card__details {
    flex-direction: row;
    align-items: baseline;
    justify-content: space-between;
    gap: 0.75rem;
  }
  .product-card__title {
    flex: 1 1 auto;
    min-width: 0;
    max-width: 100%;
  }
  .product-card__price {
    flex: 0 0 auto;
    text-align: right;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.15rem;
  }
  .product-card__price .price--compare { margin-left: 0; }
}
.product-card__icons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 0.75rem;
  margin-top: 0.15rem;
  width: 100%;
  min-width: 0;
}
.product-card__icon {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.6875rem;
  font-weight: 500;
  color: rgba(var(--color-base-text), 0.7);
  white-space: nowrap;
  max-width: 100%;
}
.product-card__icon svg { flex-shrink: 0; color: rgb(var(--color-base-button)); }
.product-card__badges {
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
  z-index: 4;
  display: grid;
  gap: 0.35rem;
  pointer-events: none;
}
.product-card__bundle-form { margin-top: auto; }
.product-card__bundle-form .button { width: 100%; }
.product-card__title {
  display: block;
  width: 100%;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.35;
  color: rgb(var(--color-base-text));
  overflow-wrap: break-word;
  word-break: normal;
  hyphens: none;
}
.product-card__price {
  width: auto;
  max-width: 100%;
}
.product-card__price .price { font-weight: 500; font-size: 0.8125rem; white-space: nowrap; }
.price--sale { color: rgb(var(--color-sale-price)); font-weight: 600; white-space: nowrap; }
.price--compare { text-decoration: line-through; color: rgba(var(--color-base-text), 0.45); font-size: 0.8125rem; margin-left: 0.375rem; white-space: nowrap; }

/* Magnet + press micro-interactions */
.js-magnet {
  --magnet-x: 0px;
  --magnet-y: 0px;
  transition: transform var(--animation-fast), background var(--animation-fast), color var(--animation-fast), box-shadow var(--animation-fast);
  transform: translate3d(var(--magnet-x), var(--magnet-y), 0);
  will-change: transform;
}
.js-magnet.is-pressed { transform: translate3d(var(--magnet-x), var(--magnet-y), 0) scale(0.92); }
.js-pressable {
  transition: transform var(--animation-fast), color var(--animation-fast), padding var(--animation-fast), opacity var(--animation-fast);
}
.js-pressable.is-pressed { transform: scale(0.97); opacity: 0.85; }

.header__icon {
  border-radius: 50%;
}
.header__icon:hover {
  background: rgb(var(--color-placeholder));
  color: rgb(var(--color-base-button));
}
.drawer__link:hover {
  color: rgb(var(--color-base-button));
  padding-left: 0.35rem;
}
.drawer__link.is-pressed { padding-left: 0.5rem; }
.mobile-bar__item { color: rgba(255,255,255,0.85); }
.mobile-bar__item:hover,
.mobile-bar__item.is-pressed { color: #fff; }

.collection-tab {
  transition: transform var(--animation-fast), background var(--animation-fast), color var(--animation-fast), border-color var(--animation-fast), box-shadow var(--animation-fast);
}
.collection-tab:hover {
  box-shadow: 3px -3px 0 rgb(var(--color-shadow) / 0.55);
}
.collection-tab.is-pressed {
  box-shadow: none;
}

/* ===== Press ribbons (dual marquees, both slant same way like Concept with-right) ===== */
.press-ribbons {
  --press-yellow: 247 188 43;
  --press-angle: -3deg;
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 100%;
  padding: 2.5rem 0 3rem;
  background: #fff;
  isolation: isolate;
}
.press-ribbons__inner {
  position: relative;
  height: 7.5rem;
  overflow: hidden;
  width: 100%;
}
.press-ribbons__band {
  position: absolute;
  left: -8%;
  width: 116%;
  padding: 0.7rem 0;
  overflow: hidden;
  transform: rotate(var(--press-angle));
  transform-origin: center center;
}
.press-ribbons__band::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background-color: rgb(var(--press-yellow));
}
.press-ribbons__band--primary {
  top: 1.1rem;
  z-index: 2;
}
.press-ribbons__band--echo {
  top: 3.35rem;
  z-index: 1;
  filter: grayscale(1);
  opacity: 0.32;
  pointer-events: none;
}
.press-ribbons__band--echo::before {
  background-color: #eef0f6;
}
.press-ribbons__marquee {
  display: flex;
  width: max-content;
  will-change: transform;
}
.press-ribbons__marquee--right {
  animation: press-scroll-right 28s linear infinite;
}
.press-ribbons__marquee--left {
  animation: press-scroll-left 28s linear infinite;
}
.press-ribbons__band:hover .press-ribbons__marquee {
  animation-play-state: paused;
}
.press-ribbons__group {
  display: flex;
  align-items: center;
  gap: clamp(2rem, 5vw, 3.5rem);
  padding-inline: clamp(1rem, 2.5vw, 1.75rem);
}
.press-ribbons__item {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.press-ribbons__item img {
  display: block;
  width: auto;
  height: calc(var(--logo-h) * 0.72);
  max-height: 3.75rem;
  object-fit: contain;
}
@media (min-width: 768px) {
  .press-ribbons { padding: 3rem 0 3.5rem; }
  .press-ribbons__inner { height: 8.75rem; }
  .press-ribbons__band--primary { top: 1.35rem; }
  .press-ribbons__band--echo { top: 3.9rem; }
  .press-ribbons__item img { height: calc(var(--logo-h) * 0.9); max-height: 4.5rem; }
}
@keyframes press-scroll-left {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-50%, 0, 0); }
}
@keyframes press-scroll-right {
  from { transform: translate3d(-50%, 0, 0); }
  to { transform: translate3d(0, 0, 0); }
}
@media (prefers-reduced-motion: reduce) {
  .press-ribbons__marquee { animation: none; transform: none; }
}

/* ===== Featured Product ===== */
.featured-product {
  padding: 2rem 0 2.5rem;
  background: rgb(var(--color-placeholder));
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
  box-sizing: border-box;
}
.featured-product__grid {
  display: grid;
  gap: 1.5rem;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
}
@media (min-width: 1024px) {
  .featured-product {
    padding: 3rem 0;
  }
  .featured-product__grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: center;
    gap: 3.5rem;
  }
  .featured-product__gallery > img {
    max-width: calc(100% - 2rem) !important;
    max-height: calc(100% - 2rem) !important;
  }
  .featured-product__info {
    padding-right: 1rem;
  }
}
.featured-product__gallery-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  width: 100%;
  max-width: 100%;
  min-width: 0;
}
.featured-product__gallery {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: var(--rounded-card);
  overflow: hidden;
  background: #fff;
}
.featured-product__gallery > img {
  position: absolute;
  inset: 0;
  margin: auto;
  width: auto !important;
  height: auto !important;
  max-width: calc(100% - 1.25rem) !important;
  max-height: calc(100% - 1.25rem) !important;
  object-fit: contain;
  background: transparent;
  opacity: 0;
  transition: opacity 0.35s ease;
}
.featured-product__gallery > img.is-active { opacity: 1; }
.featured-product__nav {
  position: absolute;
  inset: auto 0.75rem 0.75rem auto;
  display: flex;
  gap: 0.4rem;
  z-index: 3;
}
.featured-product__nav-btn {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(var(--color-base-text), 0.1);
  display: grid;
  place-items: center;
  box-shadow: 0 2px 8px rgb(0 0 0 / 0.08);
}
/* flex + min-width:0 — grid-auto-flow:column was expanding the whole page width */
.featured-product__thumbs {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.5rem;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  overflow-x: auto;
  overflow-y: hidden;
  overscroll-behavior-x: contain;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  box-sizing: border-box;
}
.featured-product__thumbs::-webkit-scrollbar { display: none; }
.featured-product__thumb {
  flex: 0 0 3.75rem;
  width: 3.75rem;
  height: 3.75rem;
  border-radius: 0.5rem;
  overflow: hidden;
  border: 2px solid transparent;
  padding: 0;
  background: #fff;
  opacity: 0.7;
  transition: opacity 0.2s, border-color 0.2s;
}
@media (min-width: 768px) {
  .featured-product__thumb {
    flex-basis: 4.5rem;
    width: 4.5rem;
    height: 4.5rem;
  }
}
.featured-product__thumb.is-active,
.featured-product__thumb:hover { opacity: 1; border-color: rgb(var(--color-base-button)); }
.featured-product__thumb img {
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  object-fit: contain;
  padding: 0.2rem;
  box-sizing: border-box;
  display: block;
  background: #fff;
}
.featured-product__info {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
}
.featured-product__title {
  font-family: var(--font-heading);
  font-size: clamp(1.35rem, 5vw, 2.25rem);
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin: 0;
  overflow-wrap: anywhere;
  word-break: break-word;
  max-width: 100%;
}
.featured-product__price { font-size: 1.25rem; font-weight: 600; margin: 0; }
.featured-product__rating {
  display: flex; align-items: center; gap: 0.4rem;
  font-size: 0.875rem; color: rgb(var(--color-base-text));
}
.featured-product__rating .icon-star { color: rgb(var(--color-rating)); }
.featured-product__reviews { color: rgba(var(--color-base-text), 0.55); }
.featured-product__stock {
  display: inline-flex; align-items: center; gap: 0.45rem;
  color: #2e7d32; font-size: 0.875rem; margin: 0;
}
.featured-product__stock-dot {
  width: 0.5rem; height: 0.5rem; border-radius: 50%;
  background: #2e7d32; box-shadow: 0 0 0 3px rgb(46 125 50 / 0.15);
}
.featured-product__form {
  margin: 0.35rem 0 0;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}
.featured-product__form .button {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  text-align: center;
  min-height: 3rem;
  max-height: none;
  padding: 0.9rem 1rem;
}
@media (max-width: 767px) {
  .featured-product__form .button--primary {
    box-shadow: 3px -3px 0 rgb(var(--color-shadow) / 0.7);
    margin-top: 0.35rem;
  }
}
@media (min-width: 1024px) {
  .featured-product__form .button {
    max-width: 22rem;
  }
  .featured-product__title {
    font-size: clamp(1.75rem, 2.2vw, 2.5rem);
    overflow-wrap: normal;
    word-break: normal;
  }
}
.featured-product__btn-price { opacity: 0.85; }
.featured-product__perks {
  list-style: none; margin: 0.5rem 0 0; padding: 0;
  display: grid; gap: 0.65rem;
}
.featured-product__perks li {
  display: flex; align-items: flex-start; gap: 0.65rem;
  font-size: 0.875rem; line-height: 1.3;
  max-width: 100%;
}
.featured-product__perks svg { flex-shrink: 0; color: rgb(var(--color-base-button)); margin-top: 0.1rem; }
.featured-product__link {
  display: inline-flex; align-items: center; gap: 0.4rem;
  margin-top: 0.25rem; font-size: 0.875rem; font-weight: 500;
  text-decoration: none;
}
.featured-product__link:hover { text-decoration: underline; }

/* ===== Movie Night compact bundle ===== */
.movie-bundle {
  padding: 4rem 0;
  background: rgb(240 241 248);
}
.movie-bundle__promo {
  position: relative; border-radius: var(--rounded-card);
  overflow: hidden; margin-bottom: 1.75rem; min-height: 16rem;
}
.movie-bundle__promo img {
  width: 100%; height: 100%; min-height: 16rem; max-height: 28rem;
  object-fit: cover; display: block;
}
.movie-bundle__promo-copy {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; color: #fff; padding: 1.5rem;
  background: linear-gradient(180deg, rgb(0 0 0 / 0.25), rgb(0 0 0 / 0.45));
}
.movie-bundle__promo-copy h2 {
  font-family: var(--font-heading); font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.03em; margin: 0 0 0.75rem;
}
.movie-bundle__promo-copy p {
  margin: 0; max-width: 36rem; font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.4;
}
.movie-bundle__promo-copy em {
  font-style: normal;
  background: linear-gradient(228deg, rgba(6, 42, 116, 1) 14%, rgba(192, 21, 53, 1) 83%);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  filter: drop-shadow(0 1px 0 rgb(255 255 255 / 0.35));
}
.movie-bundle__promo-copy em strong { color: #fff; background: none; -webkit-background-clip: unset; filter: none; }
.movie-bundle__grid {
  display: grid; gap: 1rem; align-items: stretch;
}
@media (min-width: 1024px) {
  .movie-bundle__grid {
    grid-template-columns: 1fr auto 1fr auto 1fr;
    gap: 0.75rem 1rem; align-items: center;
  }
}
.movie-bundle__plus {
  display: none; color: rgb(var(--color-base-button));
  justify-content: center; align-items: center;
}
@media (min-width: 1024px) {
  .movie-bundle__plus { display: flex; }
}
.movie-bundle__item .product-card { height: 100%; }
.movie-bundle__cta {
  display: flex; justify-content: center; margin-top: 1.5rem;
}

/* ===== Collection Tabs ===== */
.collection-tabs {
  display: flex; flex-wrap: nowrap; gap: 0.6rem;
  justify-content: flex-start; margin-bottom: 2rem;
  overflow-x: auto; scrollbar-width: none; padding-bottom: 0.25rem;
}
.collection-tabs::-webkit-scrollbar { display: none; }
.collection-tab.button {
  flex: 0 0 auto; white-space: nowrap;
  text-transform: none; letter-spacing: 0; font-size: 0.8125rem;
}
@media (min-width: 768px) {
  .collection-tabs {
    justify-content: center;
    flex-wrap: wrap;
    overflow: visible;
  }
}
.collection-item.is-hidden { display: none; }

/* ===== Build Your Own Bundle ===== */
.build-bundle {
  padding: 3.5rem 0;
  background: rgb(21 17 97);
  color: #fff;
}
.build-bundle__inner {
  display: flex; flex-direction: column; gap: 2rem;
}
@media (min-width: 1024px) {
  .build-bundle__inner {
    flex-direction: row; align-items: center; gap: 3rem;
  }
  .build-bundle__media,
  .build-bundle__copy { flex: 1; min-width: 0; }
}
.build-bundle__media {
  position: relative;
  min-height: 16rem;
  overflow: hidden;
}
.build-bundle__img--main {
  width: 100%; border-radius: var(--rounded-card);
  aspect-ratio: 1; object-fit: cover; display: block;
}
.build-bundle__img--float {
  position: absolute; right: 0; bottom: -6%;
  width: 42%; max-width: 14rem;
  filter: drop-shadow(0 12px 24px rgb(0 0 0 / 0.35));
  pointer-events: none;
}
.build-bundle__copy h2 {
  font-family: var(--font-heading); font-size: clamp(1.75rem, 3vw, 2.5rem);
  letter-spacing: -0.03em; margin: 0 0 1rem; color: #fff;
}
.build-bundle__copy p {
  margin: 0 0 0.85rem; color: rgb(255 255 255 / 0.88);
  font-size: 0.95rem; line-height: 1.55;
}
.build-bundle__offer em {
  font-style: normal; color: rgb(var(--color-base-highlight));
}
.build-bundle .button--primary {
  --color-button-background: 255 255 255;
  --color-button-text: 129 13 42;
  margin-top: 0.5rem;
}

/* ===== Footer ===== */
.footer { color: rgba(255,255,255,0.85); }

.footer-reviews {
  background: #fff; color: rgb(var(--color-base-text));
  padding: 2.5rem 0; text-align: center;
}
.footer-reviews__title {
  font-family: var(--font-heading); font-size: 1.75rem;
  letter-spacing: -0.03em; margin-bottom: 0.375rem;
}
.footer-reviews__sub {
  font-size: 0.8125rem; color: rgba(var(--color-base-text), 0.6);
  margin-bottom: 1rem;
}
.footer-reviews__score {
  display: flex; align-items: center; justify-content: center;
  gap: 0.375rem; flex-wrap: wrap;
}
.footer-reviews__num {
  font-family: var(--font-heading); font-size: 2.5rem;
  font-weight: 700; letter-spacing: -0.03em;
}
.footer-reviews__star { color: rgb(var(--color-rating)); font-size: 1.25rem; }
.footer-reviews__count { color: rgba(var(--color-base-text), 0.55); }
.footer-reviews__badge {
  font-size: 0.6875rem; background: rgb(var(--color-placeholder));
  padding: 0.15rem 0.5rem; border-radius: 0.25rem;
  color: rgba(var(--color-base-text), 0.6);
}

.footer__main {
  background: rgb(var(--color-base-button));
  padding: 2rem 0 0;
}
.footer__logo-wrap { text-align: center; padding: 1.5rem 0; }
.footer__logo {
  height: 5.25rem; width: auto; max-width: none; margin: 0 auto;
  display: block; object-fit: contain;
}
.footer-acc__link {
  color: inherit;
  text-decoration: none;
}
.footer-acc__link:hover { text-decoration: underline; }
.footer__accordions { padding-bottom: 1.5rem; }
.footer-acc {
  border-bottom: 1px solid rgba(255,255,255,0.15);
  padding: 0.25rem 0;
}
.footer-acc summary {
  list-style: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between;
  color: #fff; font-size: 0.9375rem; font-weight: 500;
  padding: 1rem 0;
}
.footer-acc summary::-webkit-details-marker { display: none; }
.footer-acc summary::after {
  content: '▾'; font-size: 0.875rem; opacity: 0.8;
  transition: transform 0.2s;
}
.footer-acc[open] summary::after { transform: rotate(180deg); }
.footer-acc ul { list-style: none; padding: 0 0 1rem; }
.footer-acc li { margin-bottom: 0.55rem; }
.footer-acc a { font-size: 0.875rem; opacity: 0.85; }
.footer-acc a:hover { opacity: 1; text-decoration: underline; }
.footer-acc p {
  font-size: 0.875rem; line-height: 1.6; opacity: 0.85;
  padding: 0 0 1rem;
}

.footer__newsletter { padding-bottom: 1.5rem; }
.footer__newsletter h4 {
  color: #fff; font-size: 0.9375rem; font-weight: 500;
  text-align: center; margin-bottom: 1rem; line-height: 1.4;
}
.newsletter-form__field {
  position: relative; max-width: 24rem; margin: 0 auto;
}
.newsletter-form__field input {
  width: 100%; padding: 0.875rem 3rem 0.875rem 1rem;
  background: rgba(0,0,0,0.25); border: 1px solid rgba(255,255,255,0.15);
  border-radius: 999px; color: #fff; font-family: var(--font-body);
  font-size: 0.8125rem;
}
.newsletter-form__field input::placeholder { color: rgba(255,255,255,0.45); }
.newsletter-form__arrow {
  position: absolute; right: 0.375rem; top: 50%; transform: translateY(-50%);
  width: 2.25rem; height: 2.25rem; border-radius: 50%;
  background: #fff; color: rgb(var(--color-base-button));
  display: flex; align-items: center; justify-content: center;
}
.newsletter-note {
  text-align: center; font-size: 0.75rem; opacity: 0.65;
  margin-top: 0.75rem; line-height: 1.5; max-width: 24rem; margin-left: auto; margin-right: auto;
}

.footer__social {
  display: flex; justify-content: center; gap: 1.25rem;
  margin: 1.5rem 0;
}
.footer__social a { color: #fff; opacity: 0.85; }
.footer__social a:hover { opacity: 1; }

.footer__shop-btn {
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  max-width: 16rem; margin: 0 auto 1.5rem;
  padding: 0.75rem 1.5rem; border-radius: 999px;
  background: #5c6ac4; color: #fff; font-size: 0.8125rem;
  transition: background 0.2s, transform 0.2s;
}
.footer__shop-btn:hover { background: #4b58b0; transform: translateY(-1px); }

.footer__payments-bar {
  background: #121633;
  padding: 0.85rem 0;
}
.footer__payments {
  display: flex; flex-wrap: wrap; justify-content: center;
  align-items: center; gap: 0.45rem;
}
.footer__payments img {
  width: 38px; height: 24px; object-fit: contain;
  border-radius: 3px;
  box-shadow: 0 1px 2px rgba(0,0,0,0.25);
}

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding: 1rem var(--page-padding) 1.25rem;
  text-align: center;
}
.footer__bottom p { font-size: 0.6875rem; opacity: 0.65; margin-bottom: 0.75rem; }
.footer__links {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 0.75rem 1rem;
}
.footer__links a { font-size: 0.6875rem; opacity: 0.65; }
.footer__links a:hover { opacity: 1; }
@media (min-width: 768px) {
  .footer-reviews { padding: 3rem 0; }
  .footer-reviews__title { font-size: 2rem; }
  .footer__main { padding: 3rem 0 0; }
  .footer__logo-wrap { padding: 0 0 2rem; }
  .footer__logo { height: 6rem; }
  .footer__accordions {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem 3rem;
    padding-bottom: 2.5rem;
  }
  .footer-acc {
    border-bottom: none;
    padding: 0;
  }
  .footer-acc summary {
    pointer-events: none;
    padding: 0 0 1rem;
    font-size: 1rem;
  }
  .footer-acc summary::after { display: none; }
  .footer-acc ul,
  .footer-acc p { display: block !important; padding-bottom: 0; }
  .footer__newsletter {
    max-width: 32rem;
    margin: 0 auto;
    padding-bottom: 2.5rem;
    text-align: center;
  }
  .footer__newsletter h4 { font-size: 1.0625rem; }
  .footer__social { justify-content: center; }
  .footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 1.5rem var(--page-padding) 2rem;
    text-align: left;
  }
  .footer__bottom p { margin: 0; }
  .footer__links { justify-content: flex-end; }
}

/* ===== Mobile Bottom Bar ===== */
.mobile-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 280;
  display: flex; justify-content: space-around; align-items: center;
  height: 3.75rem;
  background: rgb(var(--color-base-button));
  border-top: 1px solid rgba(255,255,255,0.1);
  pointer-events: auto;
  transition: transform 0.45s cubic-bezier(.7, 0, .2, 1);
}
.mobile-bar__item {
  display: flex; flex-direction: column; align-items: center; gap: 0.15rem;
  color: rgba(255,255,255,0.75); font-size: 0.625rem;
  padding: 0.375rem 0.75rem;
}
.mobile-bar__item svg { stroke: rgba(255,255,255,0.85); }
.mobile-bar__item:hover { color: #fff; }

@media (min-width: 768px) {
  .mobile-bar { display: none; }
  body { padding-bottom: 0; }
}
/* ===== Blog ===== */
.blog-grid { display: grid; gap: 1.5rem; }
@media (min-width: 768px) { .blog-grid { grid-template-columns: repeat(3, 1fr); } }
.blog-card { background: #fff; border-radius: var(--rounded-card); overflow: hidden; }
.blog-card img { aspect-ratio: 16/10; object-fit: cover; width: 100%; }
.blog-card__body { padding: 1.25rem; }
.blog-card__body h3 { font-family: var(--font-heading); font-size: 1.0625rem; line-height: 1.3; margin-bottom: 0.5rem; }
.blog-card__body p { font-size: 0.8125rem; color: rgba(var(--color-base-text), 0.65); margin-bottom: 0.75rem; line-height: 1.5; }
.blog-card__body a { font-size: 0.8125rem; font-weight: 500; text-decoration: underline; }

/* ===== Product Detail Page ===== */
.template-product .header { border-bottom: 1px solid rgba(var(--color-base-text), 0.06); }
.pdp-page {
  background: #fff;
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
}
.pdp {
  background: #fff;
  padding-bottom: 1.5rem;
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
  box-sizing: border-box;
}
.pdp__gallery {
  background: #fff;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}
.pdp__media-slider {
  position: relative;
  width: 100%;
  max-width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #fafafa;
  touch-action: pan-y;
}
.pdp__slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem;
  box-sizing: border-box;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.pdp__slide.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  z-index: 1;
}
/* Mobile-safe: never let intrinsic image width blow past the viewport */
.pdp__slide img {
  position: static !important;
  display: block !important;
  width: auto !important;
  height: auto !important;
  max-width: 100% !important;
  max-height: 100% !important;
  min-width: 0 !important;
  min-height: 0 !important;
  flex: 0 1 auto;
  object-fit: contain !important;
  padding: 0 !important;
  margin: 0;
  transform: none !important;
}
.pdp__expand {
  position: absolute; top: 0.75rem; right: 0.75rem; z-index: 3;
  width: 2.25rem; height: 2.25rem; border-radius: 50%;
  background: rgba(255,255,255,0.95);
  border: 1px solid rgba(var(--color-base-text), 0.12);
  display: flex; align-items: center; justify-content: center;
  color: rgba(var(--color-base-text), 0.55);
  transition: transform 0.2s, background 0.2s;
}
.pdp__expand:hover { transform: scale(1.08); background: #fff; }
.pdp__nav {
  position: absolute; top: 50%; z-index: 3;
  transform: translateY(-50%);
  width: 2.25rem; height: 2.25rem; border-radius: 50%;
  background: rgba(255,255,255,0.92);
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
  font-size: 1.25rem; color: rgb(var(--color-base-text));
  transition: transform 0.2s, background 0.2s;
}
.pdp__nav:hover { transform: translateY(-50%) scale(1.08); }
.pdp__nav--prev { left: 0.5rem; }
.pdp__nav--next { right: 0.5rem; }
.pdp__thumbs {
  display: flex;
  gap: 0.5rem;
  width: 100%;
  max-width: 100%;
  padding: 0.85rem 1rem 0.5rem;
  overflow-x: auto;
  overflow-y: hidden;
  overscroll-behavior-x: contain;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  box-sizing: border-box;
}
.pdp__thumbs::-webkit-scrollbar { display: none; }
.pdp__thumb {
  flex: 0 0 4rem;
  width: 4rem;
  height: 4rem;
  border-radius: 0.5rem;
  overflow: hidden;
  border: 2px solid transparent;
  padding: 0;
  background: #fff;
  transition: border-color 0.2s;
}
.pdp__thumb.is-active { border-color: rgb(var(--color-base-button)); }
.pdp__thumb img {
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  object-fit: contain !important;
  padding: 0.15rem;
  box-sizing: border-box;
  background: #fff;
}
@media (min-width: 768px) {
  .pdp__thumb { flex-basis: 4.5rem; width: 4.5rem; height: 4.5rem; }
}

.pdp__info { padding: 0.75rem 1.25rem 1.5rem; }
.pdp__rating {
  display: flex; align-items: center; gap: 0.4rem;
  font-size: 0.8125rem; margin-bottom: 0.65rem;
}
.pdp__stars { color: rgb(var(--color-rating)); letter-spacing: 1px; }
.pdp__rating a { color: rgba(var(--color-base-text), 0.55); text-decoration: underline; }
.pdp__title {
  font-family: var(--font-heading); font-weight: 700;
  font-size: clamp(1.4rem, 4vw, 1.85rem); line-height: 1.2;
  letter-spacing: -0.02em; margin-bottom: 0.65rem;
}
.pdp__price-row {
  display: flex; align-items: baseline; flex-wrap: wrap; gap: 0.5rem;
  margin-bottom: 0.85rem;
}
.pdp__price { font-size: 1.15rem; font-weight: 600; }
.pdp__compare { color: rgba(var(--color-base-text), 0.4); }
.pdp__save {
  font-size: 0.75rem; color: #fff; background: rgb(var(--color-sale-tag));
  padding: 0.15rem 0.45rem; border-radius: 999px;
}
.pdp__tags { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-bottom: 0.85rem; }
.pdp__stock {
  display: flex; align-items: center; gap: 0.4rem;
  color: #2e7d32; font-size: 0.875rem; font-weight: 500;
  margin-bottom: 1.1rem;
}
.pdp__stock .dot {
  width: 0.5rem; height: 0.5rem; border-radius: 50%;
  background: #2e7d32; box-shadow: 0 0 0 0 rgba(46,125,50,0.5);
  animation: pulseDot 1.6s infinite;
}
@keyframes pulseDot {
  0% { box-shadow: 0 0 0 0 rgba(46,125,50,0.45); }
  70% { box-shadow: 0 0 0 8px rgba(46,125,50,0); }
  100% { box-shadow: 0 0 0 0 rgba(46,125,50,0); }
}
.pdp__form { margin-bottom: 1.25rem; }
.pdp__qty {
  display: inline-flex; align-items: center;
  border: 1px solid rgba(var(--color-base-text), 0.15);
  border-radius: 0.5rem; margin-bottom: 0.85rem; overflow: hidden;
}
.pdp__qty-btn {
  width: 2.5rem; height: 2.5rem; font-size: 1.1rem;
  transition: background 0.2s;
}
.pdp__qty-btn:hover { background: rgb(var(--color-placeholder)); }
.pdp__qty input {
  width: 2.75rem; text-align: center; border: none;
  font-family: var(--font-body); font-size: 0.95rem; font-weight: 600;
}
.pdp__add {
  display: flex; justify-content: space-between; gap: 0.75rem;
  padding: 1rem 1.15rem; font-size: 0.875rem;
}
.pdp__perks { list-style: none; margin-bottom: 1.25rem; }
.pdp__perks li {
  padding: 0.4rem 0 0.4rem 1.35rem; position: relative;
  font-size: 0.875rem; border-bottom: 1px solid rgba(var(--color-base-text), 0.06);
}
.pdp__perks li::before {
  content: '✓'; position: absolute; left: 0; color: #2e7d32; font-weight: 700;
}
.pdp-acc {
  border-top: 1px solid rgba(var(--color-base-text), 0.1);
}
.pdp-acc:last-child { border-bottom: 1px solid rgba(var(--color-base-text), 0.1); }
.pdp-acc summary {
  list-style: none; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  padding: 1rem 0; font-weight: 500; font-size: 0.95rem;
  transition: color 0.2s;
}
.pdp-acc summary::-webkit-details-marker { display: none; }
.pdp-acc summary::after { content: '+'; font-size: 1.2rem; opacity: 0.6; transition: transform 0.2s; }
.pdp-acc[open] summary::after { content: '−'; }
.pdp-acc summary:hover { color: rgb(var(--color-base-button)); }
.pdp-acc__body {
  padding: 0 0 1rem; font-size: 0.875rem; line-height: 1.65;
  color: rgba(var(--color-base-text), 0.7);
}
.pdp-acc__body--rich p { margin: 0 0 0.75rem; }
.pdp-acc__body--rich ul,
.pdp-acc__body--rich ol { margin: 0 0 0.75rem; padding-left: 1.15rem; }
.pdp-acc__body--rich li { margin: 0.2rem 0; }
.pdp-acc__body--rich h2,
.pdp-acc__body--rich h3,
.pdp-acc__body--rich h4 {
  margin: 1rem 0 0.4rem;
  font-family: var(--font-heading-family);
  font-size: 1.05rem;
  color: rgb(var(--color-base-text));
}
.pdp-acc__body--rich a { text-decoration: underline; }
.pdp__related {
  display: block;
  position: relative;
  z-index: 0;
  width: 100%;
  max-width: 100%;
  background: rgb(var(--color-placeholder));
  border-top: 1px solid rgba(var(--color-base-text), 0.08);
  padding: 2rem 0 2.5rem;
  margin-top: 0;
  clear: both;
  box-sizing: border-box;
}
.pdp__related-inner {
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  padding-inline: var(--page-padding, 1.25rem);
  box-sizing: border-box;
}
.pdp__related h2 {
  font-family: var(--font-heading); font-size: 1.35rem;
  padding: 0 0 1rem;
  margin: 0;
}
.pdp__related .product-grid--scroll {
  margin-inline: 0;
  padding-inline: 0;
}
.pdp__related .product-card {
  background: #fff;
}
.toast {
  position: fixed; bottom: 5rem; left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: rgb(var(--color-base-button)); color: #fff;
  padding: 0.75rem 1.25rem; border-radius: 999px;
  font-size: 0.875rem; z-index: 350; opacity: 0;
  transition: all 0.3s; pointer-events: none;
}
.toast.is-show { opacity: 1; transform: translateX(-50%) translateY(0); }

@media (min-width: 900px) {
  .pdp {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    grid-template-rows: auto;
    align-items: start;
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
    padding: 1.5rem 1.5rem 0;
  }
  .pdp__gallery {
    position: sticky;
    top: 7rem;
    align-self: start;
    z-index: 10;
    background: #fff;
    max-height: calc(100vh - 8rem);
  }
  .pdp__thumbs {
    padding-bottom: 1rem;
  }
  .pdp__info {
    padding-bottom: 1.5rem;
    min-width: 0;
  }
  /* Related is a sibling of .pdp, never a grid child */
  .pdp-page > .pdp__related {
    grid-column: unset;
  }
}

/* ===== Cookie Banner ===== */
.cookie-banner {
  position: fixed;
  bottom: calc(3.75rem + 0.5rem);
  left: 0.75rem;
  right: 0.75rem;
  max-width: 22rem;
  margin: 0 auto;
  background: #fff;
  padding: 0.9rem 1rem;
  border-radius: var(--rounded-card);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  z-index: 300;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  align-items: center;
  justify-content: space-between;
  transform: translateY(120%);
  transition: transform 0.4s;
  pointer-events: none;
  box-sizing: border-box;
}
@media (min-width: 768px) {
  .cookie-banner { bottom: 1rem; max-width: 28rem; padding: 1.25rem; }
}
.cookie-banner.is-visible { transform: translateY(0); pointer-events: auto; }
.cookie-banner[hidden] { display: none !important; }
.cookie-banner h4 { font-size: 0.875rem; margin-bottom: 0.2rem; }
.cookie-banner p { font-size: 0.75rem; color: rgba(var(--color-base-text), 0.65); line-height: 1.35; }
.cookie-banner__actions { display: flex; gap: 0.5rem; flex-shrink: 0; }

/* ===== Lightbox ===== */
.lightbox {
  position: fixed; inset: 0; background: rgba(0,0,0,0.92);
  z-index: 400; display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transition: all 0.3s;
}
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox img { max-width: 95%; max-height: 90vh; object-fit: contain; }
.lightbox__close { position: absolute; top: 1rem; right: 1rem; color: #fff; font-size: 1.75rem; width: 2.75rem; height: 2.75rem; }

/* ===== Cart Page ===== */
.cart-page {
  max-width: 36rem;
  width: 100%;
  margin: 0 auto;
  padding: 2rem var(--page-padding);
  box-sizing: border-box;
  overflow-x: clip;
  min-width: 0;
}
.cart-page h1 {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
}
.cart-page__totals {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 2px solid rgb(var(--color-base-button));
  width: 100%;
  max-width: 100%;
  min-width: 0;
}
.cart-page__totals .cart-drawer-subtotal {
  margin-bottom: 1rem;
}

/* Amazon-style “Buy with Amazon” button */
.btn-amazon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  min-height: 3rem;
  margin: 0;
  padding: 0.7rem 1.25rem;
  border-radius: 0.65rem;
  border: 1px solid #8d7719;
  background: linear-gradient(180deg, #ffe566 0%, #ffd814 40%, #f0c000 100%);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.7) inset,
    0 2px 5px rgba(15, 17, 17, 0.18);
  color: #111;
  text-decoration: none;
  cursor: pointer;
  font-family: Arial, Helvetica, sans-serif;
  transition: filter 0.15s ease, box-shadow 0.15s ease;
  -webkit-appearance: none;
  appearance: none;
}
.btn-amazon:hover {
  filter: brightness(1.02);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.75) inset,
    0 3px 6px rgba(15, 17, 17, 0.2);
}
.btn-amazon:active {
  filter: brightness(0.98);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.4) inset,
    0 1px 2px rgba(15, 17, 17, 0.16);
}
.btn-amazon__inner {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  max-width: 100%;
}
.btn-amazon__mark {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  width: 1.55rem;
  height: 1.55rem;
  flex-shrink: 0;
  line-height: 1;
}
.btn-amazon__a {
  font-family: Arial Black, Arial, Helvetica, sans-serif;
  font-size: 1.2rem;
  font-weight: 900;
  color: #111;
  letter-spacing: -0.04em;
  line-height: 1;
  transform: translateY(1px);
}
.btn-amazon__smile {
  display: block;
  width: 1.7rem;
  height: 0.55rem;
  margin-top: -0.12rem;
  overflow: visible;
}
.btn-amazon__label {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.2;
  color: #111;
  letter-spacing: 0;
  text-transform: none;
  white-space: nowrap;
}
.btn-amazon--cart { margin-top: 0.15rem; }
.btn-amazon--drawer { margin-top: 0.25rem; }
.drawer__footer .btn-amazon { margin-top: 0.5rem; }

/* Desktop */
@media (min-width: 768px) {
  body { padding-bottom: 0; }
  .header__inner {
    grid-template-columns: auto 1fr auto;
    height: 4.75rem;
    gap: 1rem;
  }
  .header__menu { display: none; }
  .header__logo { justify-content: flex-start; }
  .header__logo img { height: 4.25rem; max-width: none; }
  .header__icons { justify-content: flex-end; gap: 0.25rem; }
  .header__desktop-nav {
    display: block;
    border-top: 1px solid rgba(var(--color-base-text), 0.06);
    background: #fff;
  }
  .header__desktop-nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    min-height: 2.75rem;
    padding-top: 0.35rem;
    padding-bottom: 0.35rem;
  }
  .header__desktop-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.35rem 1.35rem;
  }
  .header__desktop-links a {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgb(var(--color-base-text));
    transition: color 0.2s;
  }
  .header__desktop-links a:hover { color: rgb(var(--color-base-button)); }
  .header__desktop-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
    font-size: 0.75rem;
  }
  .header__currency { color: rgba(var(--color-base-text), 0.65); white-space: nowrap; }
  .header__login {
    font-weight: 500;
    text-decoration: underline;
    text-underline-offset: 2px;
  }
  .section { padding: 4rem 0; }
  .section__title { margin-bottom: 2.5rem; }
  .movie-bundle__promo { min-height: 20rem; margin-bottom: 2rem; }
  .hero-stack__buttons { flex-direction: row; flex-wrap: wrap; }
  .hero-stack__buttons .button { width: auto; min-width: 11rem; }
}
@media (max-width: 767px) {
  .header__desktop-nav { display: none; }
}

/* ── Info / policy / help pages ── */
.info-page { padding-bottom: 3rem; }
.info-hero {
  background: linear-gradient(135deg, rgb(var(--color-base-button)) 0%, #2a3278 100%);
  color: #fff;
  padding: 2.25rem 0 2.75rem;
}
.info-breadcrumb {
  display: flex; flex-wrap: wrap; align-items: center; gap: 0.45rem;
  font-size: 0.8125rem; margin-bottom: 1rem; opacity: 0.9;
}
.info-breadcrumb a { color: #fff; text-decoration: underline; text-underline-offset: 2px; }
.info-hero__title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  line-height: 1.15; margin: 0 0 0.65rem;
  letter-spacing: -0.02em;
}
.info-hero__lead {
  margin: 0; max-width: 42rem;
  font-size: 1.05rem; line-height: 1.6; opacity: 0.92;
}
.info-page__body { margin-top: -1.25rem; }
.info-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 12px 40px rgba(31, 38, 101, 0.08);
  border: 1px solid rgba(var(--color-base-text), 0.08);
  padding: 1.75rem 1.25rem 2rem;
}
.info-card__updated {
  margin: 0 0 1.5rem;
  font-size: 0.8125rem;
  color: rgba(var(--color-base-text), 0.55);
}
.info-section + .info-section {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(var(--color-base-text), 0.08);
}
.info-section h2 {
  font-size: 1.25rem;
  margin: 0 0 0.85rem;
  color: rgb(var(--color-base-button));
}
.info-section__content {
  color: rgba(var(--color-base-text), 0.88);
  line-height: 1.75;
  font-size: 0.975rem;
}
.info-section__content p { margin: 0 0 1rem; }
.info-section__content ul,
.info-section__content ol { margin: 0 0 1rem 1.15rem; }
.info-section__content li + li { margin-top: 0.35rem; }
.info-section__content a {
  color: rgb(var(--color-base-button));
  text-decoration: underline;
  text-underline-offset: 2px;
}
.info-link-list { list-style: none; margin: 0; padding: 0; }
.info-link-list li + li { margin-top: 0.65rem; }
.info-faq__item {
  border: 1px solid rgba(var(--color-base-text), 0.1);
  border-radius: 12px;
  padding: 0.85rem 1rem;
  background: #fafbfc;
}
.info-faq__item + .info-faq__item { margin-top: 0.75rem; }
.info-faq__item summary {
  cursor: pointer;
  font-weight: 600;
  color: rgb(var(--color-base-text));
}
.info-faq__item p { margin: 0.75rem 0 0; }
.info-cta { margin-top: 2rem; text-align: center; }
.info-cta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
  padding: 0 1.25rem;
  border-radius: 999px;
  background: rgb(var(--color-base-button));
  color: #fff !important;
  text-decoration: none !important;
  font-weight: 600;
}
.contact-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}
.contact-card {
  background: #f7f8fb;
  border: 1px solid rgba(var(--color-base-text), 0.08);
  border-radius: 14px;
  padding: 1.1rem 1.15rem;
}
.contact-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1rem;
  color: rgb(var(--color-base-button));
}
.contact-card p { margin: 0 0 0.45rem; }
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 0.5rem;
}
.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-weight: 600;
  font-size: 0.875rem;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  font: inherit;
  padding: 0.75rem 0.85rem;
  border: 1px solid rgba(var(--color-base-text), 0.15);
  border-radius: 10px;
  background: #fff;
}
.contact-form__row {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}
.contact-success,
.contact-error {
  padding: 0.85rem 1rem;
  border-radius: 10px;
  margin-bottom: 0.5rem;
}
.contact-success {
  background: #edf7ed;
  border: 1px solid #c8e6c9;
  color: #1b5e20;
}
.contact-error {
  background: #fdecea;
  border: 1px solid #f5c6c2;
  color: #b71c1c;
}
@media (min-width: 768px) {
  .info-card { padding: 2.25rem 2.5rem 2.5rem; }
  .contact-grid { grid-template-columns: repeat(3, 1fr); }
  .contact-form__row { grid-template-columns: 1fr 1fr; }
}
