:root {
  --black: #070708;
  --charcoal: #111114;
  --gold: #d4af64;
  --gold-soft: #c69f55;
  --cream: #f4efe7;
  --muted: #b8b1a8;
  --line: rgba(212, 175, 100, .28);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--black);
  color: var(--cream);
  font-family: "Montserrat", sans-serif;
  font-weight: 300;
}
a { color: inherit; text-decoration: none; }
img, video { display: block; width: 100%; }
button, a { -webkit-tap-highlight-color: transparent; }

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  height: 78px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 3.2vw;
  background: linear-gradient(to bottom, rgba(3,3,4,.94), rgba(3,3,4,.72));
  border-bottom: 1px solid rgba(212,175,100,.2);
  backdrop-filter: blur(10px);
}
.brand {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.65rem, 2.2vw, 2.35rem);
  letter-spacing: .18em;
  color: #dfc07a;
}
.desktop-nav { display: flex; gap: clamp(1.8rem, 3.5vw, 4rem); }
.desktop-nav a {
  position: relative;
  font-size: .85rem;
  letter-spacing: .05em;
  padding: .5rem 0;
}
.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%; bottom: 0;
  height: 1px;
  background: var(--gold);
  transition: right .25s ease;
}
.desktop-nav a:hover::after, .desktop-nav a.active::after { right: 0; }
.header-actions { justify-self: end; display: flex; align-items: center; gap: .8rem; }
.header-actions button {
  position: relative;
  border: 0;
  background: transparent;
  color: var(--cream);
  font-size: 1.05rem;
  cursor: pointer;
  opacity: .9;
}
.cart-count {
  position: absolute;
  top: -9px;
  right: -8px;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #111;
  background: var(--gold);
  font-size: .62rem;
}
.menu-button { display: none; }

.hero {
  min-height: 100svh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.hero-image {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(4,4,7,.97) 0%, rgba(4,4,7,.88) 30%, rgba(4,4,7,.4) 56%, rgba(4,4,7,.08) 100%),
    linear-gradient(0deg, rgba(3,3,4,.4), rgba(3,3,4,.05) 50%, rgba(3,3,4,.22));
}
.hero-content {
  position: relative;
  z-index: 3;
  max-width: 680px;
  padding: 9rem 0 5rem 8.5vw;
}
.eyebrow {
  margin: 0 0 1.1rem;
  color: var(--gold);
  font-size: .72rem;
  letter-spacing: .23em;
  font-weight: 500;
  text-transform: uppercase;
}
.hero h1, .editorial h2, .video-copy h2, .shop-copy h2, .manifesto h2, .section-intro h2 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-weight: 400;
}
.hero h1 {
  font-size: clamp(4.6rem, 8vw, 8.6rem);
  line-height: .78;
  letter-spacing: -.03em;
  text-shadow: 0 4px 30px rgba(0,0,0,.35);
}
.hero h1 span { color: #f0ece5; }
.tagline {
  margin: 1.8rem 0 1.1rem;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.2rem, 2vw, 1.9rem);
  letter-spacing: .13em;
  color: var(--gold);
}
.gold-rule { width: 38px; height: 1px; background: var(--gold); margin: 1.8rem 0; }
.hero-copy { margin: 0 0 .7rem; font-size: clamp(1rem, 1.5vw, 1.2rem); }
.hero-detail { margin: 0 0 2.2rem; color: #d1cbc3; letter-spacing: .03em; }
.hero-detail span { color: var(--gold); margin: 0 .55rem; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 2rem;
  border: 1px solid var(--gold);
  background: transparent;
  color: var(--cream);
  font: inherit;
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  cursor: pointer;
  transition: .25s ease;
}
.btn:hover { background: var(--gold); color: #0a0a0c; box-shadow: 0 0 28px rgba(212,175,100,.2); }
.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 1.5rem;
  z-index: 4;
  color: var(--gold);
  font-size: 1.5rem;
  animation: bounce 2s infinite;
}
@keyframes bounce { 0%,100% { transform: translateY(0); } 50% { transform: translateY(8px); } }

.feature-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: linear-gradient(180deg, #111112, #0c0c0e);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 2rem 5vw;
}
.feature-strip article {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 1.2rem;
  align-items: center;
  padding: .7rem 2.2rem;
  border-right: 1px solid var(--line);
}
.feature-strip article:last-child { border-right: 0; }
.feature-strip h2 { margin: 0 0 .4rem; color: var(--gold); font-family: "Cormorant Garamond", serif; font-size: 1.45rem; font-weight: 500; }
.feature-strip p { margin: 0; color: var(--muted); line-height: 1.65; font-size: .82rem; }
.feature-icon { width: 50px; height: 50px; display: grid; place-items: center; color: var(--gold); font-size: 2.1rem; }
.color-ring { border-radius: 50%; background: conic-gradient(#ff3b55, #ff9d2e, #ffe74a, #43d36f, #2f80ff, #7b4dff, #ff36bf, #ff3b55); padding: 6px; }
.color-ring::after { content: ""; width: 30px; height: 30px; border-radius: 50%; background: #101012; }

.editorial {
  display: grid;
  grid-template-columns: minmax(240px, .72fr) 2fr;
  gap: 4vw;
  padding: clamp(4rem, 8vw, 8rem) 6vw;
  align-items: center;
}
.editorial-copy { max-width: 420px; }
.editorial h2, .section-intro h2 { font-size: clamp(3rem, 5vw, 5.2rem); line-height: .95; }
.editorial-copy > p:not(.eyebrow), .section-intro > p:not(.eyebrow) { color: var(--muted); line-height: 1.8; margin: 1.5rem 0 1.8rem; }
.text-link { color: var(--gold); text-transform: uppercase; font-size: .72rem; letter-spacing: .18em; }
.text-link span { margin-left: .65rem; }
.product-gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.gallery-card { margin: 0; overflow: hidden; }
.gallery-card img { aspect-ratio: 4/5; object-fit: cover; transition: transform .55s ease; }
.gallery-card:hover img { transform: scale(1.035); }
.gallery-card figcaption { padding-top: .8rem; color: var(--muted); text-align: center; font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; }
.featured-card { transform: translateY(-2rem); }
.secondary-editorial { padding-top: 3rem; }

.video-section {
  min-height: 85vh;
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  background: #0d0d0f;
}
.video-section.reverse {
  grid-template-columns: .78fr 1.22fr;
}
.video-frame { min-height: 640px; background: #050506; }
.video-frame video, .video-frame img { width: 100%; height: 100%; object-fit: cover; }
.video-copy { padding: 8vw 7vw; align-self: center; }
.video-copy h2 { font-size: clamp(3.5rem, 6vw, 6.2rem); line-height: .9; }
.video-copy > p:not(.eyebrow) { color: var(--muted); line-height: 1.9; max-width: 520px; margin: 2rem 0 2.5rem; }
.spec-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.spec-grid.two-up { grid-template-columns: repeat(2, 1fr); }
.spec-grid div { border-top: 1px solid var(--line); padding-top: 1rem; }
.spec-grid strong { display: block; color: var(--gold); font-family: "Cormorant Garamond", serif; font-size: 2.3rem; font-weight: 400; }
.spec-grid span { color: var(--muted); font-size: .72rem; }

.collection-overview {
  padding: clamp(4rem, 8vw, 7rem) 6vw;
  background: linear-gradient(180deg, #0b0b0d 0%, #111216 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.section-intro {
  max-width: 720px;
  margin-bottom: 2.2rem;
}
.collection-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
}
.collection-card {
  background: rgba(255,255,255,.02);
  border: 1px solid rgba(255,255,255,.06);
  overflow: hidden;
}
.collection-card img {
  aspect-ratio: 16 / 12;
  object-fit: cover;
}
.collection-card-copy {
  padding: 1.5rem 1.4rem 1.8rem;
}
.collection-card h3 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 500;
}
.collection-card p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.8;
  margin: 1rem 0 1.2rem;
}

.shop-section {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  min-height: 80vh;
  align-items: stretch;
}
.shop-section.alternate {
  grid-template-columns: 1fr 1fr;
}
.shop-section.alternate .shop-visual { order: 2; }
.shop-section.alternate .shop-copy { order: 1; }
.shop-visual { background: #f4f3f0; display: grid; place-items: center; overflow: hidden; }
.shop-visual img { width: 100%; height: 100%; object-fit: cover; }
.light-visual { background: linear-gradient(180deg, #efefef 0%, #dadada 100%); }
.shop-copy { padding: clamp(4rem, 7vw, 8rem); background: linear-gradient(150deg, #121215, #080809); }
.shop-copy h2 { font-size: clamp(3.4rem, 5vw, 5.4rem); line-height: .95; }
.price { color: var(--gold); margin: 1rem 0 1.8rem; letter-spacing: .1em; text-transform: uppercase; font-size: .78rem; }
.product-description { color: var(--muted); line-height: 1.8; max-width: 560px; }
.product-points { list-style: none; padding: 0; margin: 2rem 0; }
.product-points li { padding: .85rem 0; border-bottom: 1px solid rgba(255,255,255,.08); color: #d7d2cb; }
.notify-message { color: var(--gold); min-height: 1.2rem; font-size: .8rem; }

.manifesto { text-align: center; padding: 10vw 6vw; background: radial-gradient(circle at 50% 50%, #251530 0, #0b0b0d 48%, #050506 100%); }
.manifesto h2 { font-size: clamp(4.3rem, 9vw, 9.5rem); line-height: .78; }
.manifesto > p:last-child { color: var(--muted); margin-top: 2rem; }

footer {
  display: grid;
  grid-template-columns: 1.7fr .8fr 1fr;
  gap: 3rem;
  padding: 4rem 6vw;
  border-top: 1px solid var(--line);
  background: #060607;
}
footer h3 { color: var(--gold); font-size: .75rem; letter-spacing: .16em; text-transform: uppercase; }
footer a:not(.brand), footer p { display: block; color: var(--muted); font-size: .8rem; line-height: 1.8; }

@media (max-width: 980px) {
  .desktop-nav { display: none; }
  .site-header { grid-template-columns: 1fr auto; }
  .menu-button { display: inline-block; }
  .hero-content { padding-left: 6vw; }
  .feature-strip { grid-template-columns: 1fr; }
  .feature-strip article { border-right: 0; border-bottom: 1px solid var(--line); padding: 1.3rem 0; }
  .feature-strip article:last-child { border-bottom: 0; }
  .editorial, .collection-cards, .video-section, .shop-section, .shop-section.alternate { grid-template-columns: 1fr; }
  .editorial-copy { max-width: 700px; }
  .featured-card { transform: none; }
  .video-frame { min-height: 55vh; }
  .shop-section.alternate .shop-visual, .shop-section.alternate .shop-copy { order: initial; }
}

@media (max-width: 680px) {
  .site-header { height: 66px; padding: 0 1rem; }
  .header-actions button:not(.menu-button) { display: none; }
  .hero { min-height: 92svh; align-items: end; }
  .hero-image { object-position: 64% center; }
  .hero-shade { background: linear-gradient(0deg, rgba(4,4,7,.98) 0%, rgba(4,4,7,.8) 48%, rgba(4,4,7,.18) 100%); }
  .hero-content { padding: 8rem 1.3rem 4rem; }
  .hero h1 { font-size: clamp(4.2rem, 22vw, 6.5rem); }
  .tagline { font-size: 1rem; }
  .product-gallery { grid-template-columns: 1fr; }
  .gallery-card img { aspect-ratio: 4/4.7; }
  .video-copy, .shop-copy { padding: 4.5rem 1.4rem; }
  .spec-grid, .spec-grid.two-up { grid-template-columns: 1fr 1fr; }
  .collection-card-copy { padding: 1.35rem 1.15rem 1.6rem; }
  footer { grid-template-columns: 1fr; }
}

/* --- Product-by-product presentation --- */
.product-page {
  display: none;
  opacity: 0;
  transform: translateX(24px);
}

.product-page.active {
  display: block;
  animation: productReveal .55s ease both;
}

@keyframes productReveal {
  from { opacity: 0; transform: translateX(24px); }
  to { opacity: 1; transform: translateX(0); }
}

.product-switcher {
  position: fixed;
  right: 1.4rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 45;
  display: grid;
  justify-items: center;
  gap: .7rem;
  padding: .8rem .55rem;
  border: 1px solid var(--line);
  background: rgba(7,7,8,.72);
  backdrop-filter: blur(16px);
  box-shadow: 0 12px 42px rgba(0,0,0,.28);
}

.switch-arrow {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(212,175,100,.55);
  background: rgba(255,255,255,.03);
  color: var(--gold);
  font-size: 1.15rem;
  cursor: pointer;
  transition: .25s ease;
}

.switch-arrow:hover:not(:disabled) {
  background: var(--gold);
  color: #09090a;
  transform: scale(1.06);
}

.switch-arrow:disabled {
  opacity: .2;
  cursor: not-allowed;
}

.switch-meta {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  display: flex;
  align-items: center;
  gap: .5rem;
  min-height: 122px;
}

.switch-count {
  color: var(--gold);
  font-size: .66rem;
  letter-spacing: .16em;
}

.switch-name {
  color: var(--cream);
  font-size: .7rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 500;
}

.hero-product-cue {
  position: absolute;
  left: 3vw;
  bottom: 2rem;
  z-index: 4;
  color: var(--gold);
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
}

.hero-product-cue span {
  margin-left: .7rem;
  color: rgba(244,239,231,.72);
  font-family: "Montserrat", sans-serif;
  font-size: .66rem;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.halo-hero .hero-image {
  object-position: 68% 42%;
}

.halo-shade {
  background:
    linear-gradient(90deg, rgba(4,4,7,.98) 0%, rgba(4,4,7,.9) 34%, rgba(4,4,7,.48) 58%, rgba(4,4,7,.15) 100%),
    linear-gradient(0deg, rgba(3,3,4,.42), rgba(3,3,4,.04) 58%, rgba(3,3,4,.25));
}

.nocturne-hero .hero-image {
  object-position: 52% 38%;
}

.nocturne-shade {
  background:
    linear-gradient(90deg, rgba(4,4,7,.97) 0%, rgba(4,4,7,.9) 32%, rgba(4,4,7,.56) 56%, rgba(4,4,7,.18) 100%),
    linear-gradient(0deg, rgba(3,3,4,.46), rgba(3,3,4,.05) 55%, rgba(3,3,4,.24));
}

.mosaic-hero .hero-image {
  object-position: 50% 48%;
}

.mosaic-shade {
  background:
    linear-gradient(90deg, rgba(4,4,7,.97) 0%, rgba(4,4,7,.91) 34%, rgba(4,4,7,.55) 58%, rgba(4,4,7,.18) 100%),
    linear-gradient(0deg, rgba(3,3,4,.48), rgba(3,3,4,.05) 52%, rgba(3,3,4,.26));
}

.mosaic-story-image img {
  object-position: center center;
}

.halo-icon {
  border: 1px solid var(--gold);
  border-radius: 50%;
}

.next-product-panel {
  min-height: 320px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 3rem;
  padding: clamp(4rem, 7vw, 7rem) 7vw;
  background:
    radial-gradient(circle at 82% 50%, rgba(115,33,154,.18), transparent 32%),
    linear-gradient(135deg, #0d0d10, #080809);
  border-top: 1px solid var(--line);
}

.next-product-panel.reverse-panel {
  grid-template-columns: auto minmax(0, 1fr);
  background:
    radial-gradient(circle at 18% 50%, rgba(194,52,183,.16), transparent 32%),
    linear-gradient(135deg, #09090a, #101014);
}

.next-product-panel > div {
  max-width: 720px;
}

.next-product-panel h2 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3rem, 6vw, 6rem);
  font-weight: 400;
  line-height: .95;
}

.next-product-panel p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.8;
}

.inline-product-switch {
  min-width: 190px;
  min-height: 58px;
  padding: 0 1.5rem;
  border: 1px solid var(--gold);
  background: transparent;
  color: var(--gold);
  font: inherit;
  font-size: .72rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  cursor: pointer;
  transition: .25s ease;
}

.inline-product-switch span {
  margin-left: .5rem;
}

.inline-product-switch:hover {
  background: var(--gold);
  color: #09090a;
}

.footer-product-link {
  display: block;
  border: 0;
  padding: 0;
  margin: .25rem 0;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-size: .8rem;
  line-height: 1.8;
  cursor: pointer;
  text-align: left;
}

.footer-product-link:hover {
  color: var(--gold);
}

@media (max-width: 980px) {
  .product-switcher {
    top: auto;
    right: 1rem;
    bottom: 1rem;
    transform: none;
    grid-template-columns: auto auto auto;
    align-items: center;
    padding: .45rem;
  }

  .switch-meta {
    writing-mode: horizontal-tb;
    transform: none;
    min-height: auto;
    padding: 0 .35rem;
  }

  .next-product-panel,
  .next-product-panel.reverse-panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .product-switcher {
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    width: max-content;
    max-width: calc(100vw - 2rem);
  }

  .switch-name { display: none; }
  .hero-product-cue { display: none; }
  .halo-hero .hero-image { object-position: 62% center; }
  .nocturne-hero .hero-image { object-position: 60% center; }
  .mosaic-hero .hero-image { object-position: 52% center; }
  .next-product-panel,
  .next-product-panel.reverse-panel {
    padding: 4.5rem 1.4rem 6.5rem;
    gap: 2rem;
  }
}

/* Streamlined Aura experience */
.aura-feature-strip article {
  min-height: 92px;
}
.aura-feature-strip h2 {
  margin-bottom: 0;
}
.aura-video-copy > p:not(.eyebrow) {
  max-width: 390px;
}
.aura-product-points {
  max-width: 500px;
}

/* Streamlined product pages */
.streamlined-feature-strip article {
  min-height: 92px;
}

.streamlined-feature-strip h2 {
  margin-bottom: 0;
}

.streamlined-video-copy > p:not(.eyebrow) {
  max-width: 420px;
}

.streamlined-product-points {
  max-width: 500px;
}

/* --- Shopping cart and checkout --- */
body.cart-open { overflow: hidden; }

.cart-overlay {
  position: fixed;
  inset: 0;
  z-index: 80;
  background: rgba(0, 0, 0, .62);
  backdrop-filter: blur(3px);
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 90;
  width: min(460px, 100vw);
  height: 100dvh;
  display: flex;
  flex-direction: column;
  background: linear-gradient(180deg, #101012 0%, #070708 100%);
  border-left: 1px solid var(--line);
  transform: translateX(102%);
  transition: transform .34s ease;
  box-shadow: -24px 0 60px rgba(0,0,0,.4);
}

body.cart-open .cart-drawer { transform: translateX(0); }

.cart-drawer-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 2rem 1.6rem 1.4rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.cart-drawer-header .eyebrow { margin-bottom: .35rem; }
.cart-drawer-header h2 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 2.7rem;
  font-weight: 400;
}

.cart-close {
  border: 0;
  background: transparent;
  color: var(--cream);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  opacity: .8;
}

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 0 1.3rem;
}

.cart-empty {
  flex: 1;
  display: grid;
  place-items: center;
  padding: 2rem;
  text-align: center;
  color: var(--muted);
  line-height: 1.7;
}

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

.cart-item {
  position: relative;
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 1rem;
  padding: 1.4rem 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.cart-item img {
  width: 92px;
  height: 112px;
  object-fit: cover;
  background: #ededed;
}

.cart-item-copy h3 {
  margin: 0 0 .4rem;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  font-weight: 500;
}

.cart-item-copy p {
  margin: 0 0 .9rem;
  color: var(--gold);
  font-size: .78rem;
}

.quantity-control {
  display: inline-grid;
  grid-template-columns: 34px 34px 34px;
  align-items: center;
  border: 1px solid rgba(255,255,255,.16);
}

.quantity-control button {
  height: 32px;
  border: 0;
  background: transparent;
  color: var(--cream);
  cursor: pointer;
  font-size: 1rem;
}

.quantity-control span {
  display: grid;
  place-items: center;
  font-size: .78rem;
}

.cart-remove {
  position: absolute;
  right: 0;
  bottom: 1.35rem;
  border: 0;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font: inherit;
  font-size: .67rem;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.cart-summary {
  padding: 1.4rem 1.6rem 1.8rem;
  border-top: 1px solid var(--line);
  background: rgba(0,0,0,.22);
}

.cart-total-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: .8rem;
  font-size: .95rem;
}

.cart-total-row strong {
  color: var(--gold);
  font-weight: 500;
}

.cart-note {
  color: var(--muted);
  font-size: .69rem;
  line-height: 1.6;
  margin: 0 0 1.2rem;
}

.cart-checkout { width: 100%; }
.cart-checkout:disabled { opacity: .45; cursor: not-allowed; }

.checkout-message {
  min-height: 1.2rem;
  margin: .8rem 0 0;
  color: var(--gold);
  font-size: .72rem;
  line-height: 1.55;
}

.add-to-cart-button { min-width: 190px; }

@media (max-width: 680px) {
  .cart-drawer { width: 100vw; }
  .cart-drawer-header { padding-top: 1.3rem; }
}

.checkout-status-page {
  min-height: 100dvh;
  display: grid;
  place-items: center;
  padding: 2rem;
  background:
    radial-gradient(circle at 75% 20%, rgba(150, 48, 178, .22), transparent 34%),
    radial-gradient(circle at 20% 75%, rgba(212, 175, 100, .14), transparent 32%),
    #070708;
}

.checkout-status-card {
  width: min(680px, 100%);
  padding: clamp(2.2rem, 7vw, 5rem);
  text-align: center;
  border: 1px solid var(--line);
  background: rgba(12,12,15,.82);
  backdrop-filter: blur(14px);
}

.checkout-status-card h1 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3.3rem, 8vw, 6.4rem);
  line-height: .9;
  font-weight: 400;
}

.checkout-status-card > p:not(.eyebrow) {
  margin: 1.6rem auto 2rem;
  max-width: 520px;
  color: var(--muted);
  line-height: 1.8;
}


.checkout-order-summary {
  margin: 1.6rem auto 2rem;
  max-width: 520px;
  padding: 1.2rem;
  border: 1px solid rgba(212, 175, 100, .24);
  text-align: left;
  color: var(--muted);
  line-height: 1.8;
}

.checkout-order-summary p {
  margin: .35rem 0;
}

.checkout-order-summary strong {
  color: var(--gold);
  font-weight: 500;
}
