:root {
  --ink: #111111;
  --muted: #75829a;
  --line: #dde4ee;
  --soft: #f6f8fb;
  --night: #090f20;
  --paper: #ffffff;
  --default-site-scale: 0.9;
}

* {
  box-sizing: border-box;
}

html {
  background: #000;
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--ink);
  background: #ffffff;
  font-family: Arial, Helvetica, sans-serif;
  letter-spacing: 0;
}

body::before {
  content: "";
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: #1a1a1a;
  pointer-events: none;
}

body:has(.home-shell)::before,
body:has(.sakura-shell)::before,
body:has(.vapourwave-shell)::before {
  display: none;
}

body.is-transitioning {
  overflow: hidden;
}

body:has(.site-shell:not(.home-shell):not(.sakura-shell):not(.vapourwave-shell)) {
  zoom: var(--default-site-scale);
}

body:has(.site-shell:not(.home-shell):not(.sakura-shell):not(.vapourwave-shell)) .site-shell {
  min-height: calc(100vh / var(--default-site-scale));
}

body:has(.site-shell:not(.home-shell):not(.sakura-shell):not(.vapourwave-shell))::before {
  height: calc(5px / var(--default-site-scale));
}

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

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

.site-shell {
  min-height: 100vh;
}

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

.site-header {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: minmax(170px, 1fr) auto minmax(170px, 1fr);
  align-items: start;
  gap: 24px;
  padding: 45px 54px 28px;
  background: #2f5e5a;
  color: #ffd6e6;
}

.site-header .brand,
.site-header .brand-mark,
.site-header .brand-kana,
.site-header .nav-link,
.site-header .icon-link {
  color: #ffd6e6;
}

.site-header .nav-link.active {
  color: #ffa8cd;
}

.brand {
  width: max-content;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand-logo {
  display: inline-block;
  width: 38px;
  height: 46px;
  flex-shrink: 0;
  background-color: currentColor;
  -webkit-mask: url("assets/virdasia-logo.svg") no-repeat center / contain;
          mask: url("assets/virdasia-logo.svg") no-repeat center / contain;
}

.brand-mark {
  display: block;
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-size: 31px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.brand-kana {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  font-size: 18px;
  letter-spacing: 0.35em;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: 92px;
  padding-top: 13px;
}

.nav-link {
  color: #111;
  font-size: 21px;
  font-weight: 700;
  letter-spacing: 0.42em;
  text-transform: uppercase;
}

.nav-link.active {
  color: var(--muted);
}

.header-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 20px;
  padding-top: 7px;
}

.icon-link {
  position: relative;
  display: grid;
  width: 35px;
  height: 35px;
  place-items: center;
  color: #171717;
}

.icon-link svg {
  width: 25px;
  height: 25px;
  stroke-width: 1.75;
}

.cart-count {
  position: absolute;
  top: -4px;
  right: -6px;
  display: none;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 999px;
  background: #e0242f;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  text-shadow: none;
}

.cart-count.visible {
  display: inline-flex;
}

.page {
  position: relative;
  min-height: calc(100vh - 144px);
  padding: 62px 54px 110px;
}

.contained {
  width: min(1188px, calc(100vw - 108px));
  margin: 0 auto;
}

.narrow {
  width: min(880px, calc(100vw - 108px));
  margin: 0 auto;
}

.breadcrumb {
  color: #111;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.42em;
  text-transform: uppercase;
}

.breadcrumb a,
.eyebrow {
  color: var(--muted);
}

.display-title {
  margin: 46px 0 78px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(64px, 5.6vw, 110px);
  font-weight: 400;
  line-height: 0.96;
  text-align: center;
}

.eyebrow {
  margin: 0 0 43px;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.52em;
  text-align: center;
  text-transform: uppercase;
}

.home-shell {
  min-height: 100vh;
  overflow: hidden;
  background: #000;
}

.home-page {
  min-height: 100vh;
  padding: 0;
  background: #000;
}

.home-stage {
  position: relative;
  display: grid;
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  place-items: center;
  overflow: hidden;
  background: #000;
}

.entry-video,
.shop-transition-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #000;
}

.entry-video {
  filter: none;
  opacity: 1;
}

.home-vignette {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 50%, rgba(0, 0, 0, 0) 0 45%, rgba(0, 0, 0, 0.25) 80%, rgba(0, 0, 0, 0.55) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0) 22%, rgba(0, 0, 0, 0.35) 100%);
  pointer-events: none;
}

.home-brand {
  position: absolute;
  z-index: 3;
  top: clamp(64px, 7.4vh, 84px);
  left: 50%;
  width: max-content;
  color: rgba(255, 255, 255, 0.82);
  text-align: center;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.home-brand .brand-mark {
  font-size: 31px;
  letter-spacing: 0.22em;
  padding-left: 0;
}

.home-brand .brand-kana {
  margin-top: 17px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 14px;
  letter-spacing: 0.5em;
  padding-left: 0.5em;
}

.shop-enter-button {
  position: relative;
  z-index: 2;
  display: grid;
  width: min(570px, 74vw);
  min-height: 170px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.78);
  color: #fff;
  background: rgba(0, 0, 0, 0.18);
  text-align: center;
  transition: border-color 180ms ease, background-color 180ms ease, opacity 180ms ease, transform 180ms ease;
}

.shop-enter-button:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.05);
}

.shop-enter-title {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(48px, 5vw, 76px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.44em;
  padding-left: 0.44em;
  text-transform: uppercase;
}

.shop-enter-kana {
  position: absolute;
  bottom: -43px;
  left: 0;
  width: 100%;
  color: rgba(255, 255, 255, 0.52);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.55em;
  padding-left: 0.55em;
}

.press-enter {
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  bottom: clamp(24px, 5.2vh, 62px);
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.5em;
  text-align: center;
  text-transform: uppercase;
}

.home-stage.is-playing .shop-enter-button,
.home-stage.is-playing .press-enter {
  transform: translateY(8px);
  opacity: 0;
  pointer-events: none;
}

.shop-transition {
  position: fixed;
  inset: 0;
  z-index: 100;
  overflow: hidden;
  background: #000;
  transition: opacity 520ms ease;
}

.shop-transition.is-fading {
  opacity: 0;
  pointer-events: none;
}

.shop-transition-video {
  filter: brightness(0.88) contrast(1.04);
}

.about-page {
  text-align: center;
}

.about-copy {
  width: min(860px, 100%);
  margin: 0 auto;
  color: #4c5468;
  font-family: "EB Garamond", Georgia, "Times New Roman", serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.62;
  text-align: left;
}

.about-copy p {
  margin: 0 0 34px;
}

.about-heading {
  margin: 12px 0 68px;
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-size: clamp(46px, 4.4vw, 78px);
}

.about-heading + .about-copy {
  margin-bottom: 8px;
}

.about-page .eyebrow {
  font-size: 15px;
}

.lookbook-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin: 68px 0 96px;
}

.lookbook-figure {
  margin: 0;
  overflow: hidden;
  background: #f2f4f8;
}

.lookbook-figure img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lookbook-row-wide .lookbook-figure img {
  aspect-ratio: 16 / 10;
}

.lookbook-row-tall .lookbook-figure img {
  aspect-ratio: 3 / 4;
}

@media (max-width: 760px) {
  .lookbook-row {
    grid-template-columns: 1fr;
    gap: 16px;
    margin: 44px 0 64px;
  }
}

.shop-page {
  overflow: hidden;
  padding-top: 0;
  padding-left: 0;
  padding-right: 0;
}

.shop-background {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  user-select: none;
}

.shop-art {
  position: absolute;
  display: block;
  height: auto;
  object-fit: contain;
}

.shop-art-cople {
  left: -52px;
  top: 192px;
  width: min(392px, 27vw);
}

.shop-art-celeste {
  right: -34px;
  top: 152px;
  width: min(318px, 22vw);
}

.shop-art-clash {
  left: -280px;
  top: 708px;
  width: min(520px, 34vw);
  opacity: 0.72;
}

.shop-art-dragon {
  right: -350px;
  top: 890px;
  width: min(610px, 40vw);
  opacity: 0.68;
}

.shop-art-cyberpunk {
  left: 50%;
  top: 1320px;
  width: min(540px, 35vw);
  transform: translateX(-52%);
  opacity: 0.68;
}

.shop-art-funk {
  left: 2vw;
  top: 1510px;
  width: min(210px, 15vw);
  opacity: 0.72;
}

.shop-hero {
  position: relative;
  z-index: 1;
  padding: 60px 54px 54px;
}

.shop-hero .breadcrumb {
  text-align: center;
}

.shop-hero .display-title {
  margin-bottom: 8px;
}

.sakura-shell {
  min-height: 100vh;
  display: flow-root;
  background-color: #65c2ff;
  background-image: url("assets/sakura-background-v3.png");
  background-size: cover;
  background-position: center top;
  background-attachment: fixed;
}

.sakura-shell .site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: transparent;
}

.sakura-shell .brand,
.sakura-shell .brand-mark,
.sakura-shell .nav-link,
.sakura-shell .icon-link {
  color: #020d22;
}

.sakura-shell .brand-kana,
.sakura-shell .nav-link.active {
  color: rgba(2, 13, 34, 0.55);
}

.vapourwave-shell .site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: transparent;
}

.vapourwave-shell .brand,
.vapourwave-shell .brand-mark,
.vapourwave-shell .nav-link,
.vapourwave-shell .icon-link {
  color: #fff;
  text-shadow: 0 0 12px rgba(120, 90, 200, 0.6);
}

.vapourwave-shell .brand-kana,
.vapourwave-shell .nav-link.active {
  color: rgba(255, 255, 255, 0.65);
}

.sakura-shell .page:not(.shop-page):not(.product-detail-page),
.vapourwave-shell .page:not(.shop-page):not(.product-detail-page) {
  position: relative;
  z-index: 1;
  zoom: var(--default-site-scale);
  margin: calc(180px / var(--default-site-scale)) calc(200px / var(--default-site-scale)) calc(80px / var(--default-site-scale));
  background: #ffffff;
  box-shadow: 12px 16px 0 rgba(231, 82, 199, 0.28), 0 24px 60px rgba(51, 78, 190, 0.14);
}

.vapourwave-shell .page:not(.shop-page):not(.product-detail-page) {
  box-shadow: 12px 16px 0 rgba(120, 90, 200, 0.36), 0 24px 60px rgba(58, 38, 121, 0.2);
}

.shop-page-sakura {
  min-height: 100vh;
  padding: 0 clamp(52px, 7.7vw, 162px) 92px;
  overflow: hidden;
  background-image: url("assets/sakura-background-v3.png");
  background-size: cover;
  background-position: center top;
  background-attachment: fixed;
  zoom: var(--default-site-scale);
}

.product-detail-sakura {
  zoom: var(--default-site-scale);
}

.sakura-hero {
  display: grid;
  min-height: 0;
  align-items: end;
  padding: 160px 0 64px;
}

.sakura-hero-copy {
  position: relative;
  z-index: 1;
  width: min(740px, 64vw);
  color: #fff;
  text-shadow:
    0 0 22px rgba(255, 255, 255, 0.72),
    0 0 58px rgba(255, 172, 232, 0.78),
    0 0 88px rgba(104, 139, 255, 0.6);
}

.sakura-kicker {
  margin: 0 0 18px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.44em;
  text-transform: uppercase;
}

.sakura-hero h1 {
  margin: 0 0 20px;
  color: #fff;
  font-size: clamp(80px, 9vw, 160px);
  font-weight: 900;
  line-height: 0.82;
  letter-spacing: 0;
  text-transform: uppercase;
  text-shadow:
    0 0 14px rgba(255, 255, 255, 0.9),
    0 0 32px rgba(255, 200, 242, 0.92),
    0 0 70px rgba(126, 153, 255, 0.72);
}

.sakura-japanese {
  margin: 0 0 16px;
  color: rgba(255, 255, 255, 0.98);
  font-size: clamp(18px, 1.5vw, 26px);
  font-weight: 900;
  letter-spacing: 0.04em;
  text-shadow: 0 0 14px rgba(255, 255, 255, 0.62), 0 0 24px rgba(255, 159, 227, 0.58);
}

.sakura-subcopy {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.38em;
  line-height: 1.45;
  text-transform: uppercase;
}

.shop-bar.sakura-shop-bar {
  position: relative;
  z-index: 3;
  grid-template-columns: minmax(0, 1fr) auto;
  min-height: 62px;
  margin: -32px 0 48px;
  padding: 0 clamp(28px, 2.45vw, 50px);
  border: 3px solid rgba(255, 255, 255, 0.9);
  color: #fff;
  background:
    linear-gradient(90deg, rgba(120, 170, 240, 0.28), rgba(150, 175, 235, 0.18) 50%, rgba(180, 170, 230, 0.22));
  box-shadow:
    11px 13px 0 rgba(236, 91, 214, 0.44),
    0 26px 74px rgba(69, 97, 230, 0.16),
    inset 0 0 58px rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(22px) saturate(1.4);
  -webkit-backdrop-filter: blur(22px) saturate(1.4);
}

.sakura-categories,
.sakura-controls {
  display: flex;
  align-items: center;
  gap: clamp(28px, 3vw, 60px);
  min-width: 0;
}

.sakura-controls {
  gap: clamp(28px, 2.7vw, 48px);
  justify-content: flex-end;
}

.sakura-controls label {
  display: flex;
}

.sakura-controls .select-like {
  width: 132px;
}

.sakura-categories a,
.sakura-controls button,
.sakura-controls .select-like {
  border: 0;
  color: #fff;
  background: transparent;
  font-size: clamp(11px, 0.75vw, 13px);
  font-weight: 900;
  letter-spacing: 0.24em;
  text-shadow:
    0 0 8px rgba(255, 255, 255, 0.72),
    0 2px 18px rgba(73, 101, 202, 0.38);
  text-transform: uppercase;
  white-space: nowrap;
}

@media (max-width: 1400px) {
  .shop-bar.sakura-shop-bar {
    padding: 0 34px;
  }

  .sakura-categories {
    gap: 28px;
  }

  .sakura-controls {
    gap: 24px;
  }

  .sakura-controls .select-like {
    width: 104px;
  }

  .sakura-categories a,
  .sakura-controls button,
  .sakura-controls .select-like {
    font-size: 13px;
    letter-spacing: 0.17em;
  }
}

.sakura-categories a.active {
  position: relative;
}

.sakura-categories a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0.34em;
  bottom: -12px;
  height: 2px;
  background: #fff;
}

.product-grid.sakura-product-panel {
  min-height: 680px;
  padding: 80px clamp(60px, 6.5vw, 110px) 72px;
  gap: clamp(60px, 5.5vw, 100px);
  background: #fff;
  box-shadow:
    15px 20px 0 rgba(231, 82, 199, 0.36),
    0 38px 86px rgba(255, 118, 216, 0.22);
}

.sakura-product-panel .product-card {
  min-height: 0;
}

.sakura-product-panel .product-image-wrap {
  min-height: 394px;
}

.sakura-product-panel .product-action {
  display: none;
}

.shop-page-sakura-3d {
  padding: 0 clamp(56px, 6vw, 130px) 100px;
}

.shop-page-sakura-3d .sakura-shop-bar {
  margin: -24px 0 56px;
}

.shop-page-sakura-3d .sakura-hero {
  min-height: 0;
  padding: 140px 0 72px;
}

.product-grid.sakura-3d-grid {
  align-items: start;
  gap: 32px;
  padding: 0 0 80px;
  background: transparent;
}

.sakura-3d-card {
  min-height: 0;
  overflow: visible;
  background: transparent;
  text-align: center;
}

.sakura-3d-frame {
  position: relative;
  min-height: 0;
  overflow: hidden;
}

.sakura-3d-card .product-image-wrap {
  min-height: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sakura-3d-card img {
  max-height: 100%;
  max-width: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}

.sakura-3d-card .product-meta {
  margin: 22px 0 0;
  color: #fff;
  text-shadow: 0 0 16px rgba(255, 255, 255, 0.5), 0 0 30px rgba(255, 126, 220, 0.55);
}

.sakura-3d-card .product-name {
  color: #fff;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.3em;
}

.sakura-3d-card .product-price {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 14px;
  font-weight: 800;
}

.sakura-3d-card .product-action {
  display: none;
}

.sakura-frame-label {
  position: relative;
  z-index: 2;
  color: rgba(255, 255, 255, 0.96);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.44em;
  line-height: 1;
  text-transform: uppercase;
  text-shadow: 0 0 18px rgba(99, 117, 255, 0.55);
}

.product-card.sakura-3d-card-polaroid .sakura-3d-frame {
  margin-top: -2px;
  padding: 18px 18px 0;
  border: 0;
  background: rgba(255, 255, 250, 0.97);
  box-shadow: 18px 20px 0 rgba(255, 118, 212, 0.24), 0 30px 70px rgba(51, 78, 190, 0.22);
  clip-path: none;
}

.product-card.sakura-3d-card-polaroid .product-image-wrap {
  position: relative;
  aspect-ratio: 1 / 1;
  width: 100%;
  min-height: 0;
  padding: 8%;
  background: #fff;
}

.product-card.sakura-3d-card-polaroid .product-image-wrap::after {
  content: "";
  position: absolute;
  top: 10px;
  right: -1px;
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 6px solid #ff7bd1;
}

.product-card.sakura-3d-card-polaroid img {
  max-width: 78%;
  max-height: 78%;
  width: auto;
  height: auto;
  object-fit: contain;
}

.polaroid-footer {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 10px;
  height: 48px;
  padding: 0 6px;
  color: rgba(20, 25, 38, 0.72);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.32em;
  text-align: left;
  text-transform: uppercase;
}

.polaroid-footer span {
  display: block;
  width: 44px;
  height: 8px;
  background: repeating-linear-gradient(90deg, #1e2026 0 2px, transparent 2px 4px);
}

.sakura-3d-card-glass .sakura-3d-frame {
  padding: 24px 22px 0;
  border: 1px solid rgba(255, 255, 255, 0.92);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(235, 241, 255, 0.52) 48%, rgba(255, 218, 243, 0.58)),
    rgba(255, 255, 255, 0.42);
  box-shadow: 0 30px 90px rgba(54, 116, 255, 0.2), inset 0 0 46px rgba(255, 255, 255, 0.48);
  backdrop-filter: blur(18px);
}

.sakura-3d-card-glass .product-image-wrap {
  border: 1px solid rgba(255, 255, 255, 0.66);
  background: rgba(255, 255, 255, 0.5);
}

.sakura-3d-card-game {
  border: 2px solid rgba(214, 204, 245, 0.95);
  background: #fff;
  box-shadow: 22px 24px 0 rgba(255, 118, 212, 0.23), 0 30px 70px rgba(43, 46, 138, 0.2);
}

.game-window-bar {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 8px;
  height: 39px;
  padding: 0 9px;
  color: #fff;
  background: linear-gradient(180deg, #8b70cc, #5f4099);
  font-size: 16px;
  font-weight: 800;
  text-align: left;
}

.game-window-icon {
  width: 18px;
  height: 18px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  background: #ffacd3;
}

.game-window-controls {
  display: flex;
  gap: 5px;
}

.game-window-controls i {
  display: grid;
  width: 23px;
  height: 23px;
  place-items: center;
  border: 2px solid rgba(232, 226, 255, 0.9);
  color: #fff;
  font-size: 17px;
  font-style: normal;
  line-height: 1;
}

.sakura-3d-card-game .sakura-3d-frame {
  min-height: 486px;
  background: #fff;
}

.sakura-3d-card-game .product-image-wrap {
  min-height: 406px;
  padding: 50px 44px 26px;
  background: #fff;
}

.sakura-3d-card-game img {
  max-height: 360px;
}

.game-window-footer {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  min-height: 39px;
  padding: 0 14px;
  border-top: 2px solid rgba(209, 200, 241, 0.92);
  color: #443668;
  background: linear-gradient(180deg, #e7e1f9, #d3c6ee);
  font-size: 15px;
  font-weight: 900;
}

.game-window-footer span {
  display: flex;
  align-items: center;
  gap: 7px;
}

.game-window-footer span:last-child {
  justify-content: flex-end;
}

.game-window-footer i {
  display: block;
  width: 15px;
  height: 15px;
  background: #4f3b88;
}

.game-window-footer strong {
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.vapourwave-shell {
  min-height: 100vh;
  display: flow-root;
  color: #3e346f;
  background-color: #8462d8;
  background-image: url("assets/vapourwave-background-v3.png");
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;
}

.shop-page-vapourwave {
  min-height: 100vh;
  padding: 0 5.45vw 90px;
  overflow: hidden;
  background-image: url("assets/vapourwave-background-v3.png");
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;
}

.vapourwave-header {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  min-height: 90px;
  color: rgba(42, 31, 86, 0.82);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.34em;
  text-transform: uppercase;
}

.vapourwave-brand {
  font-size: 25px;
  letter-spacing: 0;
  white-space: nowrap;
}

.vapourwave-brand span {
  margin-left: 12px;
  font-size: 12px;
  letter-spacing: 0.5em;
}

.vapourwave-nav,
.vapourwave-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
}

.vapourwave-nav a.active {
  border-bottom: 2px solid rgba(62, 52, 111, 0.42);
}

.vapourwave-actions {
  justify-content: flex-end;
  gap: 20px;
  font-size: 16px;
}

.vapourwave-actions svg {
  width: 20px;
  height: 20px;
}

.vapourwave-hero {
  z-index: 1;
  min-height: 0;
  padding: 160px 0 48px;
}

.vapourwave-hero-copy {
  color: rgba(62, 52, 111, 0.68);
}

.vapourwave-hero h1 {
  margin: 0 0 14px;
  font-size: clamp(60px, 6vw, 110px);
  font-weight: 300;
  line-height: 0.9;
  letter-spacing: 0;
  text-transform: uppercase;
}

.vapourwave-japanese {
  margin: 0 0 14px;
  font-size: clamp(18px, 1.5vw, 26px);
  font-weight: 800;
  letter-spacing: 0.04em;
}

.vapourwave-subcopy {
  margin: 0;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.42em;
  text-transform: uppercase;
}

.vapourwave-shop-surface {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 48px;
  align-items: start;
}

.vapourwave-sidebar {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 24px;
  min-width: 0;
}

.vapour-panel {
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background:
    linear-gradient(145deg, rgba(255, 205, 231, 0.22), rgba(178, 145, 223, 0.16)),
    rgba(255, 255, 255, 0.06);
  box-shadow: 0 16px 48px rgba(58, 38, 121, 0.08);
  backdrop-filter: blur(22px) saturate(1.1);
  -webkit-backdrop-filter: blur(22px) saturate(1.1);
  padding: 16px 14px;
  color: #46396e;
}

.vapour-panel h2 {
  margin: 0 0 14px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.category-panel a,
.filter-row,
.filter-price,
.price-row {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 9px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.category-panel a.active {
  padding-left: 12px;
  padding-right: 12px;
  background: rgba(119, 78, 175, 0.22);
  border-bottom-color: transparent;
}

.range-line {
  position: relative;
  height: 24px;
  margin: 5px 0 0;
  border-top: 5px solid #7860be;
}

.range-line i {
  position: absolute;
  top: -11px;
  width: 16px;
  height: 16px;
  border-radius: 999px;
  background: #7860be;
}

.range-line i:first-child {
  left: 0;
}

.range-line i:last-child {
  right: 28%;
}

.price-row {
  padding-top: 0;
  border-bottom: 0;
}

.filter-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 12px;
}

.filter-actions button {
  min-height: 36px;
  border: 2px solid rgba(255, 255, 255, 0.72);
  color: #47376f;
  background: rgba(255, 255, 255, 0.35);
  font-weight: 900;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  cursor: pointer;
  font-size: 12px;
}

.vapour-filter-label {
  margin: 12px 0 6px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #4a3f70;
}

.vapour-price-inputs {
  display: flex;
  gap: 8px;
}

.vapour-price-inputs label {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  color: #4a3f70;
  font-weight: 700;
}

.vapour-price-inputs input {
  flex: 1;
  min-width: 0;
  padding: 4px 6px;
  border: 1px solid rgba(122, 97, 197, 0.4);
  background: rgba(255, 255, 255, 0.7);
  font: inherit;
  font-size: 11px;
  color: #333;
}

.vapour-color-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.vapour-color-chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 8px 4px 5px;
  border: 1px solid rgba(122, 97, 197, 0.4);
  background: rgba(255, 255, 255, 0.5);
  color: #3e346f;
  cursor: pointer;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.vapour-color-chip span {
  display: inline-block;
  width: 10px;
  height: 10px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 999px;
}

.vapour-color-chip.is-selected {
  border-color: #7a61c5;
  background: #7a61c5;
  color: #fff;
}

.sort-panel button.vapour-sort-option {
  display: block;
  width: 100%;
  padding: 8px 0;
  border: 0;
  background: transparent;
  color: #3e346f;
  text-align: left;
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
}

.sort-panel button.vapour-sort-option.is-active {
  color: #fff;
  background: rgba(122, 97, 197, 0.35);
  padding-left: 10px;
}

.category-panel a {
  cursor: pointer;
}

.os-panel p {
  margin: 0;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.24em;
  line-height: 1.45;
  text-transform: uppercase;
}

.vapourwave-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  padding-top: 0;
}

.product-card.vapourwave-card {
  min-height: 0;
  border: 2px solid rgba(183, 162, 225, 0.92);
  background: #d9cff4;
  box-shadow: 0 22px 70px rgba(58, 38, 121, 0.2);
}

.vapour-window-bar {
  display: flex;
  height: 34px;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 0 10px;
  color: #504177;
  background: #e6def9;
  border-bottom: 2px solid #c2b0e6;
  font-size: 13px;
  font-weight: 900;
}

.vapour-window-title {
  flex: 1;
  min-width: 0;
  font-family: "Courier New", Courier, monospace;
  font-weight: 900;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.vapour-window-tools,
.vapour-window-controls {
  display: flex;
  align-items: center;
  gap: 5px;
  flex-shrink: 0;
}

.vapour-window-controls i {
  display: grid;
  width: 18px;
  height: 18px;
  place-items: center;
  border: 2px solid #a792de;
  border-radius: 2px;
  font-style: normal;
  line-height: 1;
}

.vapour-window-body {
  margin: 0 8px;
  padding: 4px;
  border-radius: 3px;
  background: #fff;
}

.product-card.vapourwave-card .product-image-wrap {
  height: 320px;
  min-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2px;
  overflow: hidden;
}

.product-card.vapourwave-card img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.vapour-status-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  height: 42px;
  padding: 0 14px;
  background: #d9cff4;
  border-top: 2px solid #c2b0e6;
  color: #443668;
}

.vapour-status-price {
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.vapour-status-bar button,
.vapour-status-bar .vapour-card-cta {
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  border: 0;
  color: #443668;
  background: transparent;
  padding: 0;
}

.vapour-status-bar button svg,
.vapour-status-bar .vapour-card-cta svg {
  width: 20px;
  height: 20px;
}

.vapour-status-bar i {
  width: 8px;
  height: 8px;
  border: 0;
  background: #a991d8;
}

.shop-bar {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 69px;
  padding: 0 clamp(28px, 6vw, 173px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  background: rgba(255, 255, 255, 0.82);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.38em;
  text-transform: uppercase;
}

.shop-categories {
  display: flex;
  align-items: center;
  gap: clamp(20px, 3vw, 56px);
  flex-wrap: wrap;
}

.shop-categories a {
  color: var(--muted);
  cursor: pointer;
  padding: 4px 0;
  border-bottom: 2px solid transparent;
}

.shop-categories a.active {
  color: #111;
  border-bottom-color: currentColor;
}

.shop-controls {
  display: flex;
  align-items: center;
  gap: 32px;
}

.filter-anchor,
.sort-anchor {
  position: relative;
}

.filter-toggle,
.sort-toggle {
  border: 0;
  padding: 6px 0;
  color: inherit;
  background: transparent;
  font: inherit;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.filter-badge {
  display: inline-grid;
  place-items: center;
  min-width: 20px;
  height: 20px;
  padding: 0 6px;
  border-radius: 999px;
  background: #b6558a;
  color: #fff;
  font-size: 11px;
  letter-spacing: 0;
}

.sort-arrow {
  font-size: 0.75em;
  letter-spacing: 0;
}

.filter-popover,
.sort-popover {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  z-index: 30;
  min-width: 280px;
  padding: 18px 20px;
  background: #fff;
  color: #111;
  border: 1px solid var(--line);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
  letter-spacing: 0;
  text-transform: none;
  font-weight: 500;
  font-size: 14px;
}

.sort-popover {
  min-width: 220px;
  padding: 8px 0;
}

.sort-option {
  display: block;
  width: 100%;
  border: 0;
  padding: 10px 20px;
  background: transparent;
  color: #111;
  text-align: left;
  cursor: pointer;
  font: inherit;
}

.sort-option.is-active,
.sort-option:hover {
  background: #f6f8fb;
  color: #b6558a;
}

.filter-section {
  margin-bottom: 18px;
}

.filter-section h4 {
  margin: 0 0 10px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}

.filter-price-inputs {
  display: flex;
  gap: 12px;
}

.filter-price-inputs label {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
}

.filter-price-inputs input {
  flex: 1;
  min-width: 0;
  padding: 8px 10px;
  border: 1px solid var(--line);
  font: inherit;
}

.color-chip-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.color-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 10px 5px 6px;
  border: 1px solid var(--line);
  background: #fff;
  color: #111;
  cursor: pointer;
  font: inherit;
  font-size: 12px;
}

.color-chip span {
  display: inline-block;
  width: 14px;
  height: 14px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 999px;
}

.color-chip.is-selected {
  border-color: #b6558a;
  background: #fdf1f7;
  color: #b6558a;
}

.filter-actions-row {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding-top: 6px;
  border-top: 1px solid var(--line);
}

.filter-actions-row button {
  border: 1px solid var(--line);
  padding: 8px 16px;
  background: #fff;
  color: #111;
  cursor: pointer;
  font: inherit;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 12px;
}

.filter-actions-row .filter-close {
  background: #111;
  color: #fff;
  border-color: #111;
}

.empty-filter {
  grid-column: 1 / -1;
  padding: 60px 0;
  text-align: center;
  color: var(--muted);
  font-weight: 700;
}

.filter-reset-inline {
  border: 0;
  padding: 0 0 0 8px;
  background: transparent;
  color: #b6558a;
  cursor: pointer;
  text-decoration: underline;
  font: inherit;
}

.sakura-controls .filter-popover,
.sakura-controls .sort-popover,
.sakura-controls .filter-popover *,
.sakura-controls .sort-popover * {
  text-shadow: none;
  letter-spacing: 0;
}

.sakura-controls .sort-option,
.sakura-controls .color-chip,
.sakura-controls .filter-actions-row button {
  color: #111;
  font-weight: 500;
}

.sakura-controls .sort-option.is-active,
.sakura-controls .sort-option:hover {
  color: #b6558a;
}

.sakura-controls .color-chip.is-selected {
  color: #b6558a;
}

.sakura-controls .filter-actions-row .filter-close {
  color: #fff;
}

.sakura-controls .filter-badge {
  color: #fff;
  text-shadow: none;
  letter-spacing: 0;
}

.shop-sort {
  display: flex;
  align-items: center;
  gap: 60px;
}

.select-like {
  border: 0;
  color: var(--muted);
  background: transparent;
  font-weight: 700;
  letter-spacing: 0.38em;
  text-transform: uppercase;
}

.pager {
  display: flex;
  align-items: center;
  gap: 22px;
  white-space: nowrap;
}

.pager button {
  border: 0;
  color: var(--muted);
  background: transparent;
  font-size: 30px;
  line-height: 1;
}

.product-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 86px;
  padding: 190px 10vw 40px;
}

.product-card {
  position: relative;
  min-height: 560px;
  text-align: center;
}

.product-image-wrap {
  display: grid;
  min-height: 410px;
  place-items: end center;
}

.product-card img {
  width: min(100%, 440px);
  max-height: 520px;
  object-fit: contain;
}

.product-card-link {
  display: grid;
}

.product-coming-soon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 260px;
  padding: 40px 20px;
  background: rgba(255, 255, 255, 0.06);
  border: 2px dashed rgba(255, 255, 255, 0.35);
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  text-align: center;
}

.product-coming-soon-large {
  min-height: 520px;
  font-size: 22px;
}

/* Coming-soon card: real photo behind a semi-transparent white "Coming Soon" wash */
.product-soon-wrap {
  position: relative;
}

.product-soon-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.62);
  pointer-events: none;
}

.product-soon-overlay span {
  color: #111;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  text-align: center;
}

.product-name-soon {
  color: var(--muted);
  cursor: default;
}

.product-card.is-coming-soon .product-price {
  color: var(--muted);
}

.product-meta {
  margin-top: 20px;
  color: var(--muted);
  font-weight: 700;
  line-height: 1.6;
}

.product-name {
  color: #111;
  font-size: 16px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.product-price {
  font-size: 15px;
}

.product-action {
  margin-top: 14px;
  padding: 12px 18px;
  border: 1px solid #111;
  color: #111;
  background: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
}

.product-detail-page {
  padding: 72px 6vw 100px;
}

.product-detail-sakura .detail-panel,
.product-detail-vapourwave .detail-panel {
  max-width: 1800px;
  margin: 0 auto 40px;
  padding: 72px clamp(60px, 6vw, 120px) 80px;
  background: #ffffff;
  box-shadow: 12px 16px 0 rgba(231, 82, 199, 0.28), 0 24px 60px rgba(51, 78, 190, 0.12);
}

.product-detail-sakura .detail-panel-main .product-detail-hero,
.product-detail-vapourwave .detail-panel-main .product-detail-hero {
  max-width: 82%;
}

.product-detail-vapourwave .detail-panel {
  box-shadow: 12px 16px 0 rgba(120, 90, 200, 0.36), 0 24px 60px rgba(58, 38, 121, 0.2);
}

.product-detail-sakura .product-detail-shell,
.product-detail-vapourwave .product-detail-shell,
.product-detail-sakura .product-size-guide,
.product-detail-vapourwave .product-size-guide,
.product-detail-sakura .related-products,
.product-detail-vapourwave .related-products {
  max-width: none;
  margin: 0;
}

.product-detail-breadcrumb {
  max-width: 2200px;
  margin: 0 auto 28px;
}

.product-detail-breadcrumb .breadcrumb {
  font-size: 13px;
}

.product-detail-shell {
  display: grid;
  grid-template-columns: minmax(420px, 1fr) minmax(420px, 1fr);
  gap: clamp(50px, 4vw, 90px);
  align-items: start;
  max-width: 1800px;
  margin: 0 auto;
}

.product-detail-media {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 16px;
  min-height: 640px;
  align-content: start;
  justify-items: stretch;
  padding-top: 80px;
  background: transparent;
}

.product-detail-hero {
  grid-column: 2;
  width: 100%;
  max-height: none;
  object-fit: contain;
  justify-self: center;
}

.product-detail-media .product-badge {
  grid-column: 2;
}

.product-detail-gallery {
  grid-column: 1;
  grid-row: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: stretch;
  max-height: 800px;
  overflow-y: auto;
  padding-right: 4px;
}

.product-gallery-thumb {
  display: block;
  width: 72px;
  height: 72px;
  padding: 0;
  border: 2px solid rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
  overflow: hidden;
  flex-shrink: 0;
  transition: border-color 0.15s ease, transform 0.15s ease;
}

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

.product-gallery-thumb:hover {
  transform: translateX(2px);
  border-color: rgba(255, 255, 255, 0.75);
}

.product-gallery-thumb.is-active {
  border-color: #ff7bd1;
}

@media (max-width: 900px) {
  .product-detail-media {
    grid-template-columns: 1fr;
  }
  .product-detail-hero,
  .product-detail-media .product-badge {
    grid-column: 1;
  }
  .product-detail-gallery {
    grid-column: 1;
    grid-row: auto;
    flex-direction: row;
    overflow-x: auto;
    overflow-y: visible;
    max-height: none;
  }
}

.product-detail-media .product-badge {
  justify-self: start;
  margin: 72px 0 0;
  font-size: 13px;
  text-align: left;
}

.product-detail-info {
  color: #111;
  padding-top: 20px;
}

.product-detail-info h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(38px, 2.6vw, 56px);
  font-weight: 400;
  line-height: 1;
}

.product-detail-price {
  margin: 32px 0 40px;
  color: #111;
  font-size: 26px;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
}

.product-subtitle {
  max-width: 720px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.42;
}

.product-size-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin: 0 0 14px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.38em;
  text-transform: uppercase;
}

.size-guide-link {
  border: 0;
  padding: 0;
  color: var(--muted);
  background: transparent;
  font: inherit;
  text-decoration: underline;
  text-underline-offset: 5px;
  text-transform: uppercase;
}

.size-pills {
  display: flex;
  gap: 10px;
}

.size-pills button {
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  color: #111;
  background: #fff;
  font-size: 14px;
  font-weight: 500;
}

.product-detail-action {
  width: 100%;
  min-height: 52px;
  margin-top: 32px;
  font-size: 13px;
  letter-spacing: 0.38em;
}

.inline-button {
  display: inline-grid;
  align-items: center;
  width: max-content;
}

.product-quick-specs {
  margin: 52px 0 128px;
}

.product-quick-specs p {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 21px;
  font-weight: 700;
  line-height: 1.25;
}

.product-quick-specs strong {
  color: #111;
}

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

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

.product-accordions summary {
  display: flex;
  min-height: 48px;
  align-items: center;
  justify-content: space-between;
  color: var(--muted);
  list-style: none;
  cursor: pointer;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.38em;
  text-transform: uppercase;
}

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

.product-accordions summary span {
  font-size: 14px;
  letter-spacing: 0;
}

.product-accordions p,
.product-accordions li {
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.55;
}

.product-accordions p {
  margin: 0 0 20px;
}

.product-accordions p:first-of-type {
  color: #111;
}

.product-accordions ul {
  display: grid;
  gap: 10px;
  margin: 0 0 30px;
  padding-left: 20px;
}

.product-size-guide {
  max-width: 940px;
  margin: 150px 0 0;
}

.product-size-guide h2,
.related-products h2 {
  margin: 0 0 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 46px;
  font-weight: 400;
  line-height: 1;
}

.product-size-guide > p {
  margin: 0 0 50px;
  color: var(--muted);
  font-size: 21px;
  font-weight: 700;
}

.size-table-wrap {
  overflow-x: auto;
}

.size-table-wrap table {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
}

.size-table-wrap th,
.size-table-wrap td {
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
  color: #111;
  font-size: 22px;
  font-weight: 800;
  text-align: left;
}

.size-table-wrap thead th {
  border-bottom-color: #111;
  font-size: 21px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
}

.related-products {
  margin: 150px 0 0;
}

.related-products h2 {
  margin-bottom: 70px;
}

.related-product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(42px, 5vw, 92px);
}

.related-product-card a {
  display: grid;
  justify-items: center;
  text-align: center;
}

.related-product-card img {
  width: 100%;
  height: 430px;
  object-fit: contain;
}

.related-product-card strong {
  margin-top: 42px;
  color: #111;
  font-size: 23px;
  font-weight: 500;
  letter-spacing: 0.26em;
}

.related-product-card span {
  margin-top: 14px;
  color: var(--muted);
  font-size: 22px;
  font-weight: 700;
}

.product-detail-sakura {
  min-height: 100vh;
  padding-top: 180px;
  background-image:
    linear-gradient(90deg, rgba(58, 153, 255, 0.12), rgba(255, 151, 224, 0.16)),
    url("assets/sakura-background-v3.png");
  background-size: cover;
  background-position: center top;
  background-attachment: fixed;
}

.product-detail-sakura .product-detail-media,
.product-detail-sakura .product-copy-grid article {
  background: transparent;
  box-shadow: none;
}

.product-detail-vapourwave {
  min-height: 100vh;
  padding-top: 0;
  background-image:
    linear-gradient(90deg, rgba(226, 132, 212, 0.28), rgba(91, 70, 199, 0.2)),
    url("assets/vapourwave-background-v3.png");
  background-size: cover;
  background-position: center top;
  background-attachment: fixed;
}

.product-detail-vapourwave,
.product-detail-sakura {
  padding-top: 180px;
}

.product-detail-vapourwave .product-detail-shell {
  padding-top: 0;
}

.product-detail-vapourwave .product-detail-media,
.product-detail-vapourwave .product-copy-grid article {
  border: 0;
  background: transparent;
  box-shadow: none;
}

.settings-page .display-title {
  margin-bottom: 84px;
  text-align: left;
}

.rule {
  height: 1px;
  margin: 74px 0 56px;
  background: var(--line);
}

.section-label {
  margin: 0 0 46px;
  color: var(--muted);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.52em;
  text-transform: uppercase;
}

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

.field label {
  display: block;
  margin-bottom: 17px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.5em;
  text-transform: uppercase;
}

.field input,
.field select {
  width: 100%;
  height: 55px;
  border: 1px solid var(--line);
  color: #111;
  padding: 0 16px;
  background: #fff;
  font-size: 17px;
}

.field select {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  background-image: linear-gradient(45deg, transparent 50%, #111 50%), linear-gradient(135deg, #111 50%, transparent 50%);
  background-position: calc(100% - 20px) 24px, calc(100% - 14px) 24px;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 40px;
}

.summary-fx-note {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.5;
}

.primary-button {
  min-height: 52px;
  margin-top: 28px;
  padding: 0 23px;
  border: 1px solid var(--night);
  color: #fff;
  background: var(--night);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.38em;
  text-transform: uppercase;
}

.secondary-button {
  min-height: 52px;
  padding: 0 20px;
  border: 1px solid #111;
  color: #111;
  background: #fff;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.helper-copy {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.45;
}

.password-field {
  margin-top: 28px;
}

.password-field input {
  width: min(584px, 100%);
}

.auth-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
  padding: 28px;
  border: 1px solid var(--line);
  background: var(--soft);
}

.auth-panel h3 {
  margin: 0 0 8px;
  color: #111;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}

.auth-panel p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.45;
}

.auth-panel code {
  color: #111;
  font-family: "Courier New", Courier, monospace;
}

.auth-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.auth-actions .primary-button,
.auth-actions .secondary-button {
  margin-top: 0;
}

.option-copy {
  margin: -28px 0 36px;
  color: var(--muted);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.4;
}

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

.option-grid-three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.option-card {
  min-height: 104px;
  padding: 25px 24px;
  border: 1px solid var(--line);
  color: #111;
  background: #fff;
  text-align: left;
}

.option-card.selected {
  border-color: #111;
  background: var(--soft);
}

.option-card h3 {
  margin: 0 0 7px;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.38em;
  text-transform: uppercase;
}

.option-card p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.35;
}

.cart-page .display-title {
  margin-bottom: 64px;
}

.cart-list {
  border-top: 1px solid var(--line);
}

.cart-row {
  display: grid;
  grid-template-columns: 110px 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.cart-row img {
  width: 96px;
  height: 110px;
  object-fit: contain;
}

.cart-row h3 {
  margin: 0 0 8px;
  font-size: 17px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.cart-row p,
.empty-cart {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.45;
}

.cart-total {
  display: flex;
  justify-content: space-between;
  margin-top: 36px;
  color: #111;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.checkout-button {
  width: 100%;
  margin-top: 28px;
}

.legal-page .display-title,
.contact-page .display-title {
  margin-bottom: 30px;
  text-align: left;
}

.legal-updated {
  margin: 0 0 52px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.legal-copy,
.contact-grid {
  display: grid;
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.legal-copy section,
.contact-grid article {
  padding: 34px;
  background: #fff;
}

.legal-copy h2,
.contact-grid h2 {
  margin: 0 0 14px;
  color: #111;
  font-size: 17px;
  font-weight: 800;
  letter-spacing: 0.34em;
  text-transform: uppercase;
}

.legal-copy p,
.contact-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.55;
}

.contact-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.contact-grid p + p {
  margin-top: 12px;
}

.site-footer {
  position: relative;
  z-index: 5;
  display: flex;
  justify-content: center;
  padding: 38px 54px 56px;
  background: transparent;
}

.footer-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-nav a {
  padding: 14px 26px;
  background: #fff;
  color: #111;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: 6px 8px 0 rgba(231, 82, 199, 0.36);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.footer-nav a:hover {
  transform: translate(-2px, -2px);
  box-shadow: 8px 10px 0 rgba(231, 82, 199, 0.42);
}

.toast {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 30;
  transform: translateY(20px);
  opacity: 0;
  padding: 15px 18px;
  border: 1px solid #111;
  color: #111;
  background: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  transition: opacity 180ms ease, transform 180ms ease;
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 28px;
  background: rgba(8, 12, 24, 0.42);
}

.waitlist-modal {
  position: relative;
  width: min(620px, 100%);
  padding: 52px 50px 46px;
  border: 1px solid #111;
  color: #111;
  background: #fff;
  box-shadow: 0 28px 90px rgba(9, 15, 32, 0.18);
}

.modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 0;
  color: #111;
  background: transparent;
  font-size: 28px;
  line-height: 1;
}

.modal-eyebrow {
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.42em;
  text-transform: uppercase;
}

.waitlist-modal h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 46px;
  font-weight: 400;
  line-height: 1;
}

.modal-product {
  margin: 20px 0 0;
  color: #111;
  font-size: 17px;
  font-weight: 800;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.modal-copy {
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.55;
}

.waitlist-form {
  margin-top: 32px;
}

.waitlist-form .field span {
  display: block;
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.42em;
  text-transform: uppercase;
}

.waitlist-form input {
  width: 100%;
  height: 56px;
  border: 1px solid var(--line);
  padding: 0 16px;
  color: #111;
  background: #fff;
  font-size: 17px;
}

.modal-actions {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 14px;
  margin-top: 28px;
}

.modal-actions .primary-button,
.modal-actions .secondary-button {
  width: 100%;
  margin-top: 0;
}

@media (max-width: 1100px) {
  .site-header {
    grid-template-columns: 1fr auto;
    row-gap: 28px;
  }

  .main-nav {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: flex-start;
    gap: 46px;
  }

  .shop-bar {
    padding: 0 54px;
  }

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

  .footer-nav {
    gap: 14px;
  }

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

  .product-detail-shell,
  .product-copy-grid {
    grid-template-columns: 1fr;
  }

  .product-detail-media {
    min-height: 520px;
  }

  .product-care {
    grid-column: auto;
  }

  .sakura-shell .site-header {
    grid-template-columns: minmax(160px, 1fr) auto minmax(48px, 1fr);
    row-gap: 0;
  }

  .sakura-shell .main-nav {
    grid-column: auto;
    grid-row: auto;
    justify-content: center;
    gap: 60px;
    overflow: visible;
  }

  .sakura-shell .header-actions {
    justify-content: flex-end;
  }

  .sakura-hero {
    padding-top: 190px;
  }

  .shop-bar.sakura-shop-bar {
    grid-template-columns: minmax(0, 1fr) auto;
    min-height: 76px;
    gap: 18px;
    padding: 0 28px;
  }

  .sakura-categories {
    flex-wrap: nowrap;
    gap: 18px;
  }

  .sakura-controls {
    gap: 14px;
  }

  .sakura-controls .select-like {
    width: 86px;
  }

  .sakura-categories a,
  .sakura-controls button,
  .sakura-controls .select-like {
    font-size: 12px;
    letter-spacing: 0.12em;
  }

  .sakura-categories,
  .sakura-controls {
    overflow: visible;
  }

  .vapourwave-header {
    grid-template-columns: 1fr;
    gap: 16px;
    padding-top: 26px;
  }

  .vapourwave-nav,
  .vapourwave-actions {
    justify-content: flex-start;
    gap: 28px;
    overflow-x: auto;
  }

  .vapourwave-shop-surface {
    grid-template-columns: 1fr;
  }

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

  .os-panel {
    display: none;
  }

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

  .option-grid-three {
    grid-template-columns: 1fr;
  }

  .sakura-3d-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .site-header {
    grid-template-columns: 1fr auto;
    padding: 28px 22px 18px;
  }

  .brand-mark {
    font-size: 24px;
    letter-spacing: 0.28em;
  }

  .brand-kana {
    font-size: 14px;
  }

  .main-nav {
    gap: 28px;
    overflow-x: auto;
    padding-bottom: 8px;
  }

  .nav-link {
    font-size: 15px;
    letter-spacing: 0.35em;
  }

  .page,
  .shop-hero {
    padding-left: 22px;
    padding-right: 22px;
  }

  .home-page {
    padding: 0;
  }

  .home-stage {
    width: 100vw;
    height: 100vh;
    height: 100dvh;
  }

  .shop-enter-button {
    width: min(430px, 78vw);
    min-height: 132px;
  }

  .shop-enter-title {
    font-size: 42px;
    letter-spacing: 0.34em;
    padding-left: 0.34em;
  }

  .contained,
  .narrow {
    width: 100%;
  }

  .display-title {
    font-size: 56px;
    text-align: left;
  }

  .about-copy {
    font-size: 18px;
  }

  .shop-hero .display-title,
  .shop-hero .breadcrumb {
    text-align: center;
  }

  .shop-page-sakura {
    padding: 0 22px 60px;
    background-attachment: scroll;
    background-position: 58% top;
  }

  .sakura-shell .site-header {
    position: relative;
    background: transparent;
  }

  .sakura-hero {
    min-height: 58vh;
    padding: 56px 0 78px;
  }

  .sakura-hero-copy {
    width: 100%;
  }

  .sakura-kicker {
    font-size: 14px;
    letter-spacing: 0.34em;
  }

  .sakura-hero h1 {
    font-size: 82px;
  }

  .sakura-japanese {
    font-size: 21px;
  }

  .sakura-subcopy {
    font-size: 13px;
    letter-spacing: 0.24em;
  }

  .shop-bar.sakura-shop-bar {
    grid-template-columns: 1fr;
    margin-top: -30px;
    padding: 18px;
    border-width: 2px;
    min-height: auto;
  }

  .sakura-categories,
  .sakura-controls {
    overflow: visible;
    gap: 22px;
  }

  .sakura-categories {
    flex-wrap: wrap;
    row-gap: 14px;
  }

  .sakura-product-panel {
    padding: 52px 20px 40px;
  }

  .shop-page-vapourwave {
    padding: 0 22px 60px;
    background-attachment: scroll;
  }

  .vapourwave-header {
    min-height: auto;
    font-size: 14px;
  }

  .vapourwave-brand {
    font-size: 22px;
  }

  .vapourwave-hero {
    min-height: 280px;
    padding: 42px 0 34px;
  }

  .vapourwave-hero h1 {
    font-size: 76px;
  }

  .vapourwave-japanese {
    font-size: 24px;
  }

  .vapourwave-sidebar,
  .vapourwave-grid {
    grid-template-columns: 1fr;
  }

  .vapour-panel {
    padding: 24px 22px;
  }

  .vapourwave-card .product-image-wrap {
    min-height: 300px;
  }

  .sakura-3d-grid {
    padding-bottom: 50px;
  }

  .sakura-3d-frame {
    min-height: 410px;
  }

  .sakura-3d-card .product-image-wrap {
    min-height: 300px;
  }

  .shop-art-cople {
    left: -98px;
    top: 300px;
    width: 280px;
  }

  .shop-art-celeste {
    right: -74px;
    top: 274px;
    width: 230px;
  }

  .shop-art-clash {
    left: -186px;
    top: 820px;
    width: 380px;
    opacity: 0.55;
  }

  .shop-art-dragon {
    right: -220px;
    top: 1180px;
    width: 430px;
    opacity: 0.48;
  }

  .shop-art-cyberpunk,
  .shop-art-funk {
    display: none;
  }

  .shop-bar {
    grid-template-columns: 1fr;
    padding: 18px 22px;
    font-size: 13px;
    letter-spacing: 0.28em;
  }

  .shop-sort {
    gap: 20px;
  }

  .pager {
    justify-content: space-between;
  }

  .product-grid {
    grid-template-columns: 1fr;
    gap: 54px;
    padding: 70px 22px 30px;
  }

  .product-detail-page {
    padding-left: 22px;
    padding-right: 22px;
  }

  .product-detail-sakura {
    padding-top: 70px;
    background-attachment: scroll;
  }

  .product-detail-vapourwave {
    background-attachment: scroll;
  }

  .product-detail-vapourwave .product-detail-shell {
    padding-top: 44px;
  }

  .product-detail-media {
    min-height: 360px;
  }

  .product-detail-media img {
    max-height: 360px;
  }

  .product-copy-grid article {
    padding: 28px 22px;
  }

  .form-grid,
  .option-grid,
  .cart-row {
    grid-template-columns: 1fr;
  }

  .primary-button,
  .secondary-button,
  .option-card h3 {
    letter-spacing: 0.26em;
  }

  .auth-panel {
    align-items: stretch;
    flex-direction: column;
    padding: 24px 20px;
  }

  .auth-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .site-footer {
    padding: 30px 22px;
  }

  .footer-nav {
    display: grid;
    gap: 18px;
  }

  .legal-copy section,
  .contact-grid article {
    padding: 28px 22px;
  }
}

/* ============================================================
   Cart / checkout / size + qty / account additions (v80)
   ============================================================ */

/* Anchors reused as buttons need explicit centering */
a.primary-button,
a.product-action,
a.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}
a.checkout-button {
  display: flex;
}

/* Size pills — selected state + qty stepper on product page */
.size-pill.is-selected {
  border-color: #111;
  color: #fff;
  background: #111;
}
.product-qty-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin: 22px 0 0;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.38em;
  text-transform: uppercase;
}
.qty-stepper {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
}
.qty-btn {
  width: 40px;
  height: 44px;
  border: 0;
  background: #fff;
  color: #111;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
}
.qty-btn:hover {
  background: #f4f6fb;
}
.qty-value {
  min-width: 44px;
  text-align: center;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: normal;
}

/* Waitlist modal selection line */
.modal-selection {
  margin: 4px 0 0;
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

/* Cart line editing */
.cart-row-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.cart-row-size {
  font-size: 13px !important;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}
.cart-row-controls {
  display: flex;
  align-items: center;
  gap: 18px;
}
.cart-remove {
  border: 0;
  padding: 0;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: underline;
  text-underline-offset: 4px;
  cursor: pointer;
}
.cart-remove:hover {
  color: var(--ink);
}
.cart-row-price {
  color: #111 !important;
  font-weight: 800 !important;
  white-space: nowrap;
}
.cart-note {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-align: right;
}

/* Checkout page */
.checkout-page {
  padding: 72px 6vw 110px;
}
.checkout-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(320px, 1fr);
  gap: 56px;
  max-width: 1180px;
  margin: 0 auto;
  align-items: start;
}
.checkout-section {
  margin-top: 40px;
}
.field-wide {
  grid-column: 1 / -1;
}
.payment-placeholder {
  border: 1px dashed var(--line);
  padding: 22px;
  background: #f8fafd;
}
.payment-placeholder p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.5;
}
.place-order-button {
  width: 100%;
  margin-top: 36px;
}
.place-order-button[disabled] {
  border-color: var(--line);
  color: #b7c0d2;
  background: #eef1f7;
  cursor: not-allowed;
}
.checkout-disabled-note {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-align: center;
}
.checkout-summary {
  border: 1px solid var(--line);
  padding: 28px 26px;
  position: sticky;
  top: 96px;
}
.summary-rows {
  margin: 22px 0 0;
}
.summary-row {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}
.summary-row img {
  width: 56px;
  height: 64px;
  object-fit: contain;
}
.summary-row strong {
  display: block;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.summary-row span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}
.summary-line-price {
  color: #111 !important;
  font-weight: 800 !important;
}
.summary-totals {
  margin-top: 22px;
}
.summary-total-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.summary-total-row.muted {
  color: var(--muted);
}
.summary-grand {
  margin-top: 8px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  font-size: 17px;
  font-weight: 800;
}

/* Settings — order history + waitlist + profile */
.settings-empty {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
}
.order-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 18px;
}
.order-card {
  border: 1px solid var(--line);
  padding: 20px 22px;
}
.order-card-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.order-card-head span {
  color: var(--muted);
}
.order-card-items {
  margin: 12px 0;
}
.order-card-items p {
  margin: 4px 0;
  color: var(--muted);
  font-size: 15px;
  font-weight: 600;
}
.order-card-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}
.order-status {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}
.waitlist-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 18px;
}
.waitlist-entry {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  border: 1px solid var(--line);
  padding: 16px 20px;
}
.waitlist-entry strong {
  display: block;
  font-size: 14px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.waitlist-entry span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}
.waitlist-leave {
  min-height: 40px;
  padding: 0 16px;
  font-size: 12px;
}

@media (max-width: 900px) {
  .checkout-wrap {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .checkout-summary {
    position: static;
    order: -1;
  }
}
