:root {
  --bg: #020204;
  --bg-deep: #06030c;
  --surface: rgba(10, 10, 14, 0.84);
  --surface-strong: rgba(13, 11, 19, 0.94);
  --surface-soft: rgba(255, 255, 255, 0.04);
  --text: #f7f5ff;
  --muted: #ada8bf;
  --line: rgba(255, 255, 255, 0.08);
  --accent: #8456ff;
  --accent-strong: #c4a5ff;
  --accent-soft: rgba(132, 86, 255, 0.14);
  --shadow: 0 32px 90px rgba(0, 0, 0, 0.5);
  --radius-lg: 34px;
  --radius-md: 24px;
  --radius-sm: 18px;
  --max-width: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  position: relative;
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 12% 14%, rgba(132, 86, 255, 0.22), transparent 26%),
    radial-gradient(circle at 85% 16%, rgba(255, 255, 255, 0.05), transparent 18%),
    radial-gradient(circle at 50% 120%, rgba(132, 86, 255, 0.2), transparent 32%),
    linear-gradient(180deg, #020204 0%, #030206 30%, #05020a 65%, #020204 100%);
}

body.intro-open {
  overflow: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 120px 120px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.9), transparent 96%);
  opacity: 0.5;
  pointer-events: none;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at center, transparent 52%, rgba(2, 2, 4, 0.76) 100%);
  pointer-events: none;
}

body.cart-open {
  overflow: hidden;
}

body.image-lightbox-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
select {
  font: inherit;
}

.background-orb,
.background-grid {
  position: fixed;
  z-index: 0;
  pointer-events: none;
}

.background-orb {
  width: 38rem;
  height: 38rem;
  border-radius: 999px;
  filter: blur(42px);
}

.background-orb--left {
  top: -7rem;
  left: -12rem;
  background: radial-gradient(circle, rgba(132, 86, 255, 0.28), transparent 70%);
  animation: drift 16s ease-in-out infinite alternate;
}

.background-orb--right {
  right: -12rem;
  bottom: -10rem;
  background: radial-gradient(circle, rgba(119, 82, 255, 0.2), transparent 72%);
  animation: drift 18s ease-in-out infinite alternate-reverse;
}

.background-grid {
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.015), transparent 25%),
    radial-gradient(circle at center, transparent 0, rgba(2, 2, 4, 0.1) 58%, rgba(2, 2, 4, 0.86) 100%);
}

.page-shell {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 32px), var(--max-width));
  margin: 0 auto;
  padding: 24px 0 80px;
  transition:
    filter 260ms ease,
    transform 260ms ease;
}

body.intro-open .page-shell {
  filter: blur(10px) saturate(0.82);
  transform: scale(0.985);
}

.intro-overlay {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 24px;
  transition:
    opacity 240ms ease,
    visibility 240ms ease;
}

.intro-overlay.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.intro-overlay__backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top, rgba(132, 86, 255, 0.18), transparent 30%),
    rgba(2, 2, 4, 0.82);
  backdrop-filter: blur(14px);
}

.intro-overlay__panel {
  position: relative;
  z-index: 1;
  width: min(680px, 100%);
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 32px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.012)),
    rgba(11, 10, 16, 0.96);
  box-shadow: 0 28px 100px rgba(0, 0, 0, 0.52);
  animation: intro-rise 420ms ease both;
}

.intro-overlay__close {
  position: absolute;
  top: 18px;
  right: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  cursor: pointer;
}

.intro-overlay__logo {
  display: block;
  width: 220px;
  max-width: 70%;
  height: auto;
  margin-bottom: 10px;
}

.intro-overlay__headline {
  max-width: 12ch;
  margin: 0;
  font-family: "Cinzel", Georgia, serif;
  font-size: clamp(2.6rem, 7vw, 4.4rem);
  line-height: 0.98;
  letter-spacing: -0.03em;
}

.intro-overlay__copy {
  max-width: 52ch;
  margin: 18px 0 0;
  color: var(--muted);
  line-height: 1.8;
}

.intro-overlay__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.intro-overlay__meta span {
  display: inline-flex;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  color: #f2effc;
  font-size: 0.84rem;
}

.intro-overlay__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.site-header {
  position: sticky;
  top: 16px;
  z-index: 30;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
  padding: 12px 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 38px;
  background: rgba(6, 6, 10, 0.9);
  backdrop-filter: blur(24px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
  transition:
    padding 180ms ease,
    gap 180ms ease,
    transform 180ms ease,
    border-radius 180ms ease,
    background-color 180ms ease,
    box-shadow 180ms ease;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.brand__mark {
  width: 52px;
  height: 52px;
  flex: 0 0 auto;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
  object-fit: contain;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.brand__wording {
  display: grid;
  gap: 2px;
}

.brand__logo {
  display: block;
  width: 132px;
  max-width: 100%;
  height: auto;
  transition: width 180ms ease, opacity 180ms ease;
}

.brand__name-fallback {
  display: none;
}

.brand small {
  color: var(--muted);
  font-size: 0.74rem;
  transition:
    max-height 180ms ease,
    opacity 180ms ease,
    margin 180ms ease;
}

.site-nav {
  display: inline-flex;
  align-items: center;
  justify-self: center;
  gap: 18px;
  color: var(--muted);
  font-size: 0.88rem;
  transition:
    max-height 180ms ease,
    opacity 180ms ease,
    transform 180ms ease,
    margin 180ms ease;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
}

.site-nav a,
.button,
.cart-toggle,
.icon-button,
.product-card__button,
.product-card__option-button,
.quantity-button {
  transition:
    transform 180ms ease,
    opacity 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--text);
}

.site-header__actions {
  display: inline-flex;
  align-items: center;
  flex-wrap: nowrap;
  justify-self: end;
  gap: 10px;
  transition: gap 180ms ease, transform 180ms ease;
}

.site-header__menu-toggle {
  display: none !important;
}

.site-header__menu-toggle span {
  display: block;
  width: 16px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.site-header__actions .button,
.site-header__actions .cart-toggle {
  min-height: 44px;
  padding: 0 18px;
  font-size: 0.92rem;
}

.section-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.015)),
    var(--surface);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.section-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.04), transparent 25%);
  pointer-events: none;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent-strong);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.launch-hero h1,
.section-heading h2,
.signal-panel__headline,
.story-card h2,
.preview-card h3,
.timeline__item h3,
.collection-lockup h3,
.cart-drawer h2 {
  margin: 0;
  line-height: 0.98;
  font-family: "Cinzel", Georgia, serif;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.launch-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 18px;
  align-items: stretch;
  margin-bottom: 16px;
  padding: 18px;
}

.launch-hero__copy,
.signal-panel {
  position: relative;
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.012)),
    var(--surface-strong);
}

.launch-hero__copy {
  padding: 34px;
  animation: reveal-up 700ms ease both;
}

.launch-hero__copy::before {
  content: "";
  position: absolute;
  top: -18%;
  right: -12%;
  width: 22rem;
  height: 22rem;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(132, 86, 255, 0.22), transparent 72%);
  filter: blur(4px);
}

.launch-hero h1 {
  max-width: 11.5ch;
  font-size: clamp(2.8rem, 5vw, 4.8rem);
}

.launch-hero__lede,
.section-note,
.story-card p,
.preview-card p,
.timeline__item p,
.collection-meta,
.collection-lockup p,
.product-card__description,
.cart-item__variant,
.empty-state,
.setup-banner,
.site-footer__copy,
.signal-panel__date,
.signal-panel__notes p,
.launch-meta__item span,
.cart-total span {
  color: var(--muted);
}

.launch-hero__lede {
  max-width: 54ch;
  margin: 16px 0 0;
  font-size: 0.98rem;
  line-height: 1.72;
}

.launch-hero__actions,
.collection-lockup__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.launch-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 20px;
}

.launch-meta__item {
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.025);
}

.launch-meta__item span,
.launch-meta__item strong {
  display: block;
}

.launch-meta__item span {
  margin-bottom: 10px;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.launch-meta__item strong {
  font-size: 0.94rem;
}

.signal-panel {
  display: grid;
  gap: 14px;
  padding: 22px;
  animation: reveal-up 820ms ease both;
}

.signal-panel__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.signal-panel__label {
  margin: 0;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #e8e2fb;
}

.signal-panel__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  border-radius: 999px;
  border: 1px solid rgba(196, 165, 255, 0.16);
  background: rgba(132, 86, 255, 0.12);
  color: #f5efff;
  font-size: 0.84rem;
  font-weight: 700;
}

.signal-panel__badge::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #c4a5ff;
  box-shadow: 0 0 0 0 rgba(196, 165, 255, 0.45);
  animation: pulse-dot 1.8s infinite;
}

.signal-panel__headline {
  max-width: 12ch;
  font-size: clamp(1.9rem, 3vw, 2.8rem);
}

.signal-panel__date {
  margin: 0;
  line-height: 1.7;
}

.countdown {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.countdown__unit {
  padding: 12px 10px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
  text-align: center;
}

.countdown__unit strong,
.countdown__unit span {
  display: block;
}

.countdown__unit strong {
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  line-height: 1;
}

.countdown__unit span {
  margin-top: 10px;
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.signal-panel__notes {
  display: grid;
  gap: 8px;
}

.signal-panel__notes p {
  margin: 0;
  line-height: 1.7;
}

.signal-panel__visual {
  position: relative;
  min-height: 132px;
  margin-top: 4px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 22px;
  background:
    radial-gradient(circle at center, rgba(132, 86, 255, 0.26), transparent 46%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
  overflow: hidden;
}

.signal-panel__ring {
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
}

.signal-panel__ring::before,
.signal-panel__ring::after {
  content: "";
  position: absolute;
  inset: 16%;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 999px;
}

.signal-panel__ring::after {
  inset: 28%;
}

.signal-panel__mark {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 88px;
  height: 88px;
  transform: translate(-50%, -50%);
  animation: float-mark 5s ease-in-out infinite;
}

.marquee {
  display: none;
}

.story-grid,
.preview-grid {
  display: grid;
  gap: 18px;
}

.story-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 22px;
}

.story-card,
.preview-section,
.preview-card,
.collection-section,
.checkout-flow,
.setup-banner,
.site-footer {
  animation: reveal-up 900ms ease both;
}

.story-card {
  padding: 28px;
}

.story-card h2 {
  margin-bottom: 12px;
  font-size: 2rem;
}

.story-card p {
  margin: 0;
  line-height: 1.8;
}

.preview-section,
.collection-section,
.checkout-flow,
.social-section,
.site-footer {
  margin-bottom: 18px;
  padding: 26px;
}

.section-heading {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 26px;
}

.checkout-flow .section-heading {
  flex-direction: column;
  align-items: start;
}

.checkout-flow .section-note {
  max-width: 60ch;
  text-align: left;
}

.section-heading h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.section-note,
.collection-meta {
  max-width: 34ch;
  text-align: right;
  line-height: 1.7;
}

.preview-grid {
  position: relative;
  z-index: 1;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.preview-card {
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.012)),
    var(--surface-strong);
}

.preview-card__index {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 8px 10px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: #efe8ff;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.preview-card h3 {
  margin-bottom: 12px;
  font-size: 1.75rem;
}

.preview-card p {
  margin: 0;
  line-height: 1.75;
}

.setup-banner {
  display: none;
  padding: 18px 22px;
  border-radius: var(--radius-md);
  background:
    linear-gradient(180deg, rgba(132, 86, 255, 0.12), rgba(132, 86, 255, 0.06)),
    var(--surface-strong);
}

.setup-banner.is-visible {
  display: block;
}

.collection-lockup {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 14px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(132, 86, 255, 0.1), rgba(255, 255, 255, 0.02)),
    var(--surface-strong);
}

.collection-lockup__eyebrow {
  margin: 0;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #f1e9ff;
}

.collection-lockup h3 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
}

.collection-lockup p {
  margin: 0;
  line-height: 1.8;
}

.collection-lockup__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.collection-lockup__tags span {
  display: inline-flex;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.07);
  color: #f2effc;
  font-size: 0.86rem;
}

.product-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 294px));
  justify-content: center;
  gap: 14px;
  margin-top: 16px;
}

.product-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01)),
    var(--surface-strong);
}

.product-card__media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1.02;
  background:
    radial-gradient(circle at top left, rgba(132, 86, 255, 0.24), transparent 38%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(5, 5, 8, 0.96));
}

.product-card__media::after {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
}

.product-card__media > img,
.product-card__media [data-main-image] {
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: zoom-in;
}

.product-card__gallery-controls {
  position: absolute;
  right: 16px;
  bottom: 16px;
  left: 16px;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(7, 7, 10, 0.18), rgba(7, 7, 10, 0.76));
  backdrop-filter: blur(12px);
}

.product-card__gallery-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  cursor: pointer;
}

.product-card__gallery-button span {
  font-size: 1.4rem;
  line-height: 1;
}

.product-card__gallery-counter {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 72px;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.product-card__media--placeholder {
  display: grid;
  place-items: center;
}

.product-card__media--placeholder .product-card__placeholder-logo {
  width: 42%;
  opacity: 0.92;
}

.product-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 12px;
  padding: 16px;
}

.product-card__top {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 12px;
}

.product-card__eyebrow {
  margin: 0 0 8px;
  color: var(--accent-strong);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.product-card__title {
  margin: 0;
  font-size: 1rem;
  line-height: 1.4;
}

.product-card__price-group {
  display: grid;
  justify-items: end;
  gap: 4px;
}

.product-card__price-note {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.product-card__price {
  white-space: nowrap;
  font-weight: 800;
  color: #ffffff;
}

.product-card__description {
  margin: 0;
  line-height: 1.75;
}

.product-card__actions {
  display: grid;
  gap: 12px;
  margin-top: auto;
}

.product-card__selectors {
  display: grid;
  gap: 14px;
}

.product-card__selector {
  display: grid;
  gap: 8px;
  position: relative;
}

.product-card__option-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.product-card__option-list--dropdown {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(56px, 1fr));
  gap: 10px;
}

.product-card__option-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  min-height: 48px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  cursor: pointer;
}

.product-card__option-caret {
  font-size: 0.78rem;
  transition: transform 180ms ease;
}

.product-card__selector--dropdown.is-open .product-card__option-caret {
  transform: rotate(180deg);
}

.product-card__option-popover {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  left: 0;
  z-index: 4;
  max-height: min(260px, 44vh);
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.015)),
    rgba(14, 12, 20, 0.98);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(18px);
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.18) transparent;
}

.product-card__option-popover::-webkit-scrollbar {
  width: 6px;
}

.product-card__option-popover::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
}

.product-card__option-button {
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.02);
  color: var(--text);
  cursor: pointer;
}

.product-card__option-button.is-selected {
  border-color: rgba(255, 255, 255, 0.95);
  background: #f7f5ff;
  color: #08070c;
}

.product-card__option-button.is-unavailable,
.product-card__option-button:disabled {
  opacity: 0.38;
  cursor: not-allowed;
}

.product-card__selector span,
.product-card__variant-note,
.cart-drawer__note {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.7;
}

.product-card__selector span {
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.product-card__variant-note {
  margin: 0;
}

.timeline {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 16px;
}

.timeline__item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 16px;
  align-items: start;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.012)),
    var(--surface-strong);
}

.timeline__item span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: #efe8ff;
  font-size: 0.92rem;
  font-weight: 800;
}

.timeline__item h3 {
  margin-bottom: 8px;
  font-size: 2rem;
}

.timeline__item p {
  max-width: 56ch;
  margin: 0;
  line-height: 1.8;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.social-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.social-card {
  display: grid;
  gap: 12px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.012)),
    var(--surface-strong);
}

.social-card__label {
  color: var(--accent-strong);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.social-card strong {
  font-size: 1.2rem;
}

.social-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.social-card--muted {
  opacity: 0.84;
}

.site-footer__copy {
  max-width: 54ch;
  margin: 0;
  line-height: 1.8;
}

.site-footer__logo {
  display: block;
  width: 180px;
  height: auto;
  opacity: 0.88;
}

.button,
.cart-toggle,
.product-card__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
}

.button:hover,
.button:focus-visible,
.cart-toggle:hover,
.cart-toggle:focus-visible,
.icon-button:hover,
.icon-button:focus-visible,
.product-card__button:hover,
.product-card__button:focus-visible,
.quantity-button:hover,
.quantity-button:focus-visible {
  transform: translateY(-1px);
}

.button--primary,
.product-card__button {
  background: linear-gradient(135deg, #f4efff 0%, #b58fff 220%);
  color: #08070c;
  font-weight: 800;
  box-shadow: 0 10px 30px rgba(132, 86, 255, 0.18);
}

.button--secondary {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  border: 1px solid var(--line);
}

.button--ghost,
.cart-toggle {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.button--block {
  width: 100%;
}

.cart-toggle__count {
  min-width: 26px;
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  font-size: 0.84rem;
}

.product-card select,
.cart-item__quantity {
  width: 100%;
  min-height: 46px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
}

.cart-backdrop {
  position: fixed;
  inset: 0;
  z-index: 35;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  background:
    radial-gradient(circle at top, rgba(132, 86, 255, 0.12), transparent 30%),
    rgba(3, 2, 6, 0.58);
  backdrop-filter: blur(8px);
  transition:
    opacity 220ms ease,
    visibility 220ms ease;
}

.cart-backdrop.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.image-lightbox {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 220ms ease,
    visibility 220ms ease;
}

.image-lightbox.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.image-lightbox__backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top, rgba(132, 86, 255, 0.16), transparent 30%),
    rgba(3, 2, 6, 0.86);
  backdrop-filter: blur(10px);
}

.image-lightbox__dialog {
  position: relative;
  z-index: 1;
  width: min(960px, 100%);
  max-height: min(88vh, 920px);
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.012)),
    rgba(11, 10, 16, 0.98);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.48);
}

.image-lightbox__close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
}

.image-lightbox__nav {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 46px;
  height: 46px;
  transform: translateY(-50%);
  font-size: 1.5rem;
}

.image-lightbox__nav--prev {
  left: 16px;
}

.image-lightbox__nav--next {
  right: 16px;
}

.image-lightbox__counter {
  position: absolute;
  left: 50%;
  bottom: 16px;
  z-index: 2;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 78px;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.image-lightbox__image {
  display: block;
  width: 100%;
  max-height: min(80vh, 820px);
  object-fit: contain;
  border-radius: 20px;
}

.cart-drawer {
  position: fixed;
  top: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 40;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  width: min(420px, calc(100% - 24px));
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
    rgba(10, 9, 14, 0.96);
  backdrop-filter: blur(24px);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.45);
  transform: translateX(calc(100% + 32px));
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    transform 220ms ease,
    opacity 220ms ease,
    visibility 220ms ease;
}

.cart-drawer.is-open {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.cart-drawer__header,
.cart-total,
.cart-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.cart-drawer__footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 16px;
  background: linear-gradient(180deg, rgba(13, 11, 19, 0), rgba(13, 11, 19, 0.98) 28%);
}

.cart-drawer__body {
  display: grid;
  align-content: start;
  gap: 14px;
  overflow: auto;
  padding: 18px 0;
}

.cart-item {
  align-items: start;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.03);
}

.cart-item__details {
  flex: 1;
}

.cart-item__title {
  margin: 0 0 6px;
  font-size: 0.98rem;
}

.cart-item__variant {
  margin: 0 0 12px;
  font-size: 0.88rem;
}

.cart-item__controls {
  display: flex;
  align-items: center;
  gap: 8px;
}

.quantity-button,
.icon-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: none;
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  cursor: pointer;
}

.cart-total {
  margin-bottom: 14px;
}

.cart-total strong {
  font-size: 1.08rem;
}

.cart-drawer__note {
  margin: 0 0 14px;
}

.empty-state {
  margin: 0;
  padding: 24px 0;
  line-height: 1.7;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 24px;
  z-index: 50;
  padding: 12px 18px;
  border-radius: 999px;
  background: rgba(245, 239, 255, 0.94);
  color: #07070c;
  transform: translate(-50%, 24px);
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.toast.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

button:disabled {
  cursor: not-allowed;
  opacity: 0.56;
}

@keyframes pulse-dot {
  0% {
    box-shadow: 0 0 0 0 rgba(196, 165, 255, 0.45);
  }

  70% {
    box-shadow: 0 0 0 10px rgba(196, 165, 255, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(196, 165, 255, 0);
  }
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@keyframes reveal-up {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float-mark {
  0%,
  100% {
    transform: translate(-50%, -50%) translateY(0);
  }

  50% {
    transform: translate(-50%, -50%) translateY(-10px);
  }
}

@keyframes drift {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(26px, -18px, 0);
  }
}

@keyframes intro-rise {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.98);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 1080px) {
  .launch-hero,
  .story-grid,
  .preview-grid,
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .launch-hero {
    grid-template-columns: 1fr;
  }

  .site-header {
    grid-template-columns: 1fr auto;
  }

  .site-nav {
    grid-column: 1 / -1;
    order: 3;
  }
}

@media (max-width: 760px) {
  body {
    -webkit-text-size-adjust: 100%;
  }

  .page-shell {
    width: min(calc(100% - 18px), var(--max-width));
    padding-top: 10px;
    padding-bottom: 110px;
  }

  .site-header,
  .story-grid,
  .preview-grid,
  .product-grid,
  .launch-meta {
    grid-template-columns: 1fr;
  }

  .site-header {
    gap: 14px;
    padding: 14px;
    border-radius: 24px;
    top: 10px;
  }

  .site-header__menu-toggle {
    display: none !important;
    width: 42px;
    height: 42px;
    flex-direction: column;
    gap: 4px;
    justify-self: end;
  }

  .site-header__actions {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .site-header__actions .button--ghost {
    display: none;
  }

  .site-header__actions .button,
  .site-header__actions .cart-toggle {
    width: 100%;
    min-height: 48px;
    padding: 0 12px;
    font-size: 0.84rem;
    white-space: nowrap;
  }

  .intro-overlay__panel {
    padding: 22px;
    border-radius: 26px;
  }

  .intro-overlay__actions,
  .launch-hero__actions,
  .collection-lockup__actions {
    flex-direction: column;
  }

  .intro-overlay__actions .button,
  .launch-hero__actions .button,
  .collection-lockup__actions .button {
    width: 100%;
  }

  .site-nav {
    display: flex;
    flex-wrap: nowrap;
    gap: 10px;
    overflow-x: auto;
    max-height: 52px;
    padding-bottom: 2px;
    scrollbar-width: none;
  }

  .site-nav::-webkit-scrollbar {
    display: none;
  }

  .site-nav a {
    flex: 0 0 auto;
    min-height: 42px;
    padding: 0 14px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.03);
  }

  .launch-hero,
  .preview-section,
  .collection-section,
  .checkout-flow,
  .social-section,
  .site-footer {
    padding: 22px;
  }

  .launch-hero__copy,
  .signal-panel {
    padding: 22px;
    border-radius: 24px;
  }

  .launch-hero h1 {
    max-width: 11ch;
    font-size: clamp(2.45rem, 12vw, 3.6rem);
  }

  .signal-panel__headline,
  .section-heading h2,
  .collection-lockup h3 {
    font-size: clamp(1.9rem, 9.2vw, 2.8rem);
  }

  .countdown {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .countdown__unit {
    padding: 16px 12px;
    border-radius: 16px;
  }

  .countdown__unit strong {
    font-size: clamp(1.8rem, 8vw, 2.5rem);
  }

  .section-heading,
  .site-footer,
  .cart-drawer__header,
  .cart-total,
  .signal-panel__top {
    flex-direction: column;
    align-items: start;
  }

  .section-note,
  .collection-meta {
    text-align: left;
  }

  .timeline__item {
    grid-template-columns: 1fr;
    padding: 18px;
  }

  .timeline__item h3 {
    font-size: 1.55rem;
  }

  .timeline__item p,
  .site-footer__copy,
  .section-note,
  .collection-meta,
  .launch-hero__lede {
    max-width: none;
  }

  .social-grid {
    grid-template-columns: 1fr;
  }

  .product-card {
    border-radius: 20px;
  }

  .product-card__media {
    aspect-ratio: 1 / 1.08;
  }

  .product-card__gallery-controls {
    right: 10px;
    bottom: 10px;
    left: 10px;
    padding: 8px 10px;
    border-radius: 16px;
  }

  .product-card__gallery-button {
    width: 40px;
    height: 40px;
  }

  .product-card__body {
    padding: 18px;
    gap: 12px;
  }

  .product-card__option-popover {
    padding: 10px;
  }

  .product-card__option-list--dropdown {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
  }

  .product-card__top {
    flex-direction: column;
    align-items: start;
  }

  .product-card__price-group {
    justify-items: start;
  }

  .product-card__title {
    font-size: 1rem;
  }

  .product-card__description {
    font-size: 0.95rem;
    line-height: 1.65;
  }

  .product-card select,
  .product-card__button,
  .product-card__option-button {
    min-height: 50px;
  }

  .collection-lockup {
    padding: 22px;
    border-radius: 22px;
  }

  .site-footer__logo {
    width: 148px;
  }

  .cart-drawer {
    top: auto;
    right: 9px;
    left: 9px;
    bottom: 9px;
    width: auto;
    padding: 20px;
    max-height: min(82dvh, 720px);
    border-radius: 24px;
  }

  .cart-drawer__body {
    padding: 14px 0;
  }

  .cart-drawer__footer {
    position: sticky;
    bottom: 0;
    padding-top: 14px;
    padding-bottom: 10px;
    padding-bottom: calc(10px + env(safe-area-inset-bottom));
  }

  .cart-item {
    padding: 14px;
    border-radius: 16px;
  }

  .image-lightbox {
    padding: 14px;
  }

  .image-lightbox__dialog {
    padding: 18px;
    border-radius: 22px;
  }

  .image-lightbox__nav {
    width: 42px;
    height: 42px;
  }

  .image-lightbox__image {
    max-height: 74vh;
    border-radius: 16px;
  }

  .marquee {
    margin-bottom: 18px;
  }

  body.mobile-header-compact .site-header {
    width: fit-content;
    max-width: calc(100vw - 18px);
    min-width: 0;
    margin-left: auto;
    grid-template-columns: auto;
    justify-items: end;
    gap: 0;
    padding: 8px;
    border-radius: 18px;
    background: rgba(7, 6, 11, 0.96);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.34);
  }

  body.mobile-header-compact .site-header__menu-toggle {
    display: inline-flex !important;
    width: 42px;
    height: 42px;
  }

  body.mobile-header-compact .brand {
    display: none;
  }

  body.mobile-header-compact .site-nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    grid-column: 1 / -1;
    order: 3;
    max-height: 0;
    margin: 0;
    opacity: 0;
    overflow: hidden;
    transform: translateY(-6px);
    pointer-events: none;
    padding-bottom: 0;
  }

  body.mobile-header-compact .site-header__actions {
    grid-column: 1 / -1;
    order: 4;
    max-height: 0;
    gap: 8px;
    margin: 0;
    opacity: 0;
    overflow: hidden;
    transform: translateY(-6px);
    pointer-events: none;
  }

  body.mobile-header-compact .site-nav a,
  body.mobile-header-compact .site-header__actions .button,
  body.mobile-header-compact .site-header__actions .cart-toggle {
    min-height: 42px;
    font-size: 0.8rem;
  }

  body.mobile-header-compact.mobile-menu-open .site-header {
    width: min(310px, calc(100vw - 18px));
    max-width: calc(100vw - 18px);
    grid-template-columns: 1fr auto;
    gap: 8px;
    padding: 10px 12px;
  }

  body.mobile-header-compact.mobile-menu-open .brand {
    display: inline-flex;
  }

  body.mobile-header-compact.mobile-menu-open .brand__logo {
    width: 106px;
  }

  body.mobile-header-compact.mobile-menu-open .brand small {
    max-height: 0;
    margin: 0;
    opacity: 0;
    overflow: hidden;
  }

  body.mobile-header-compact.mobile-menu-open .site-nav,
  body.mobile-header-compact.mobile-menu-open .site-header__actions {
    max-height: 280px;
    opacity: 1;
    overflow: visible;
    transform: translateY(0);
    pointer-events: auto;
  }

  body.mobile-header-compact.mobile-menu-open .site-nav {
    padding-top: 6px;
  }

  body.mobile-header-compact.mobile-menu-open .site-header__actions {
    padding-top: 8px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }
}

@media (max-width: 560px) {
  .page-shell {
    width: min(calc(100% - 12px), var(--max-width));
    padding-bottom: 104px;
  }

  .site-header,
  .launch-hero,
  .collection-section,
  .checkout-flow,
  .social-section,
  .site-footer,
  .launch-hero__copy,
  .signal-panel,
  .collection-lockup,
  .timeline__item {
    padding: 18px;
  }

  .countdown {
    grid-template-columns: 1fr;
  }

  .site-header__actions .button,
  .site-header__actions .cart-toggle {
    font-size: 0.76rem;
    min-height: 46px;
    padding: 0 8px;
  }

  .product-card__gallery-controls {
    right: 8px;
    bottom: 8px;
    left: 8px;
    padding: 8px;
  }

  .product-card__gallery-button {
    width: 38px;
    height: 38px;
  }

  .product-card__gallery-counter {
    min-width: 64px;
    font-size: 0.72rem;
  }

  .brand__logo {
    width: 118px;
  }

  .brand small {
    display: none;
  }

  .launch-hero h1,
  .intro-overlay__headline {
    font-size: clamp(2.2rem, 12vw, 3.4rem);
  }

  .launch-hero__lede,
  .signal-panel__date,
  .signal-panel__notes p,
  .collection-lockup p,
  .timeline__item p,
  .site-footer__copy {
    font-size: 0.95rem;
    line-height: 1.65;
  }

  .section-heading h2,
  .signal-panel__headline,
  .collection-lockup h3 {
    font-size: clamp(1.8rem, 11vw, 2.5rem);
  }

  .timeline__item h3 {
    font-size: 1.35rem;
  }

  .launch-meta__item {
    padding: 14px 16px;
    border-radius: 16px;
  }

  .launch-meta__item strong {
    font-size: 0.92rem;
  }

  .product-card__body {
    padding: 16px;
  }

  .product-card__option-list {
    gap: 8px;
  }

  .product-card__option-toggle {
    min-height: 46px;
    padding: 0 14px;
  }

  .product-card__option-popover {
    padding: 8px;
    border-radius: 16px;
  }

  .product-card__option-list--dropdown {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .product-card__option-button {
    min-height: 42px;
    padding: 0 14px;
    border-radius: 12px;
  }

  .product-card__price {
    font-size: 1rem;
  }

  .image-lightbox__dialog {
    padding: 14px;
    border-radius: 18px;
  }

  .image-lightbox__nav {
    top: auto;
    bottom: 12px;
    transform: none;
    width: 40px;
    height: 40px;
    opacity: 0.88;
  }

  .image-lightbox__nav--prev {
    left: 12px;
  }

  .image-lightbox__nav--next {
    right: 12px;
  }

  .image-lightbox__close {
    top: 10px;
    right: 10px;
  }

  .image-lightbox__counter {
    bottom: 12px;
    min-width: 70px;
    min-height: 34px;
    font-size: 0.74rem;
  }

  .product-card__selector span,
  .product-card__variant-note,
  .cart-drawer__note {
    font-size: 0.82rem;
  }

  .cart-drawer {
    right: 6px;
    left: 6px;
    bottom: 6px;
    padding: 16px;
    max-height: 80vh;
  }

  .cart-drawer__header {
    gap: 10px;
  }

  .cart-drawer__footer {
    padding-top: 12px;
    padding-bottom: 8px;
    padding-bottom: calc(8px + env(safe-area-inset-bottom));
  }

  .cart-total strong {
    font-size: 1rem;
  }

  .marquee {
    display: none;
  }
}

@media (max-width: 420px) {
  .page-shell {
    width: min(calc(100% - 10px), var(--max-width));
  }

  .site-header,
  .launch-hero,
  .collection-section,
  .checkout-flow,
  .social-section,
  .site-footer,
  .launch-hero__copy,
  .signal-panel,
  .collection-lockup,
  .timeline__item {
    padding: 16px;
  }

  .site-header__actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .intro-overlay {
    padding: 14px;
  }

  .intro-overlay__panel {
    padding: 18px;
  }

  .intro-overlay__close {
    top: 14px;
    right: 14px;
    width: 36px;
    height: 36px;
  }

  .countdown__unit {
    padding: 14px 10px;
  }

  .countdown__unit span {
    font-size: 0.68rem;
  }

  .site-header__actions .button,
  .site-header__actions .cart-toggle,
  .launch-hero__actions .button,
  .collection-lockup__actions .button,
  .product-card__button,
  .product-card__option-button {
    min-height: 48px;
    padding-inline: 10px;
  }

  .site-header__actions .button,
  .site-header__actions .cart-toggle {
    font-size: 0.78rem;
  }

  body.mobile-header-compact .site-header {
    padding: 7px;
  }

  body.mobile-header-compact .site-header__menu-toggle {
    width: 40px;
    height: 40px;
  }

  body.mobile-header-compact.mobile-menu-open .site-header {
    width: min(292px, calc(100vw - 12px));
    max-width: calc(100vw - 12px);
    padding: 8px 10px;
  }

  body.mobile-header-compact.mobile-menu-open .brand__logo {
    width: 98px;
  }

  .cart-item {
    flex-direction: column;
  }

  .cart-item > div:last-child {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .cart-item__controls {
    flex-wrap: wrap;
  }
}
