/* WaifuWall aesthetic refresh — intentionally loaded after style.css */
:root,
html[data-theme="midnight"] {
  --ink: #0b0918;
  --ink-2: #121023;
  --ink-3: #1d1732;
  --panel: rgba(255,255,255,.052);
  --panel-strong: rgba(255,255,255,.085);
  --line: rgba(255,255,255,.13);
  --line-soft: rgba(255,255,255,.075);
  --pink: #ef4f87;
  --pink-2: #ff80ad;
  --pink-dark: #ca326b;
  --lavender: #b99aff;
}
html[data-theme="sakura"] {
  --ink: #120a1a;
  --ink-2: #1a1025;
  --ink-3: #2d1939;
  --panel: rgba(255,255,255,.06);
  --panel-strong: rgba(255,255,255,.095);
  --pink: #ff5d9f;
  --pink-2: #ff94c2;
  --pink-dark: #db3e7e;
  --lavender: #d0adff;
}
html[data-theme="crimson"] {
  --ink: #10070c;
  --ink-2: #190c13;
  --ink-3: #2a121b;
  --panel: rgba(255,255,255,.05);
  --panel-strong: rgba(255,255,255,.085);
  --pink: #e74a65;
  --pink-2: #ff8296;
  --pink-dark: #bd3048;
  --lavender: #d6a19a;
}
html[data-theme="neon"] {
  --ink: #070913;
  --ink-2: #0c1122;
  --ink-3: #141d37;
  --panel: rgba(255,255,255,.052);
  --panel-strong: rgba(255,255,255,.09);
  --pink: #8f61ff;
  --pink-2: #c193ff;
  --pink-dark: #6b43dc;
  --lavender: #70e4ff;
}

body:not(.checkout-page) {
  background:
    radial-gradient(circle at 76% -12%, color-mix(in srgb, var(--pink) 20%, transparent), transparent 34rem),
    radial-gradient(circle at 12% 36%, color-mix(in srgb, var(--lavender) 9%, transparent), transparent 30rem),
    linear-gradient(180deg, #090713 0%, var(--ink) 38%, #0a0815 100%);
}

/* Header */
.site-header {
  box-shadow: 0 14px 42px rgba(0,0,0,.24);
  background: color-mix(in srgb, var(--ink) 89%, transparent);
}
.header-inner {
  min-height: 72px;
}
.brand-logo {
  width: 188px;
}
.main-nav {
  gap: 30px;
}
.main-nav a {
  padding-block: 26px;
}
.icon-button {
  width: 40px;
  height: 40px;
}
.icon-button:hover {
  background: color-mix(in srgb, var(--pink) 12%, transparent);
  color: var(--pink-2);
}

/* Age gate */
.age-gate-modal {
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 22px;
  box-shadow: 0 32px 100px rgba(0,0,0,.55);
  background:
    radial-gradient(circle at 100% 0, color-mix(in srgb, var(--pink) 18%, transparent), transparent 17rem),
    rgba(18,14,35,.94);
}
.age-gate-modal .logo { width: 190px; }

/* Homepage hero: artwork only; all copy and buttons are HTML */
.hero-slider {
  aspect-ratio: auto;
  height: clamp(470px, 62vh, 640px);
  max-height: 640px;
  border-bottom: 1px solid var(--line-soft);
  background: var(--ink-2);
}
.hero-slide {
  display: block;
}
.hero-slide-media,
.hero-slide-shade,
.hero-slide-content {
  position: absolute;
  inset: 0;
}
.hero-slide-media {
  /* Subjects in these portraits sit right-of-center with faces in the upper
     third of the frame — biasing the crop toward top/right (instead of a
     symmetric center-crop) keeps faces in view on ultra-wide screens, where
     "cover" would otherwise crop evenly from the top and cut them off. */
  background-position: 72% 18%;
  background-size: cover;
  transform: scale(1.015);
  transition: transform 7s ease;
}
.hero-slide.active .hero-slide-media { transform: scale(1.055); }
.hero-slide-shade {
  background:
    linear-gradient(90deg, rgba(6,5,15,.94) 0%, rgba(6,5,15,.84) 27%, rgba(6,5,15,.48) 50%, rgba(6,5,15,.17) 72%, rgba(6,5,15,.28) 100%),
    linear-gradient(180deg, rgba(8,6,18,.04), rgba(8,6,18,.08) 62%, rgba(8,6,18,.56));
}
.hero-slide-content {
  z-index: 2;
  width: min(var(--max-width), calc(100% - 48px));
  margin-inline: auto;
  display: flex;
  align-items: center;
}
.hero-copy {
  width: min(570px, 52%);
  padding: 54px 0 78px;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 17px;
  color: #ffd0df;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .17em;
  text-transform: uppercase;
}
.hero-eyebrow::before {
  content: "";
  width: 30px;
  height: 1px;
  background: var(--pink-2);
}
.hero-copy h1 {
  max-width: 650px;
  margin: 0;
  font-size: clamp(44px, 6.3vw, 82px);
  line-height: .97;
  letter-spacing: -.055em;
  text-wrap: balance;
}
.hero-copy p {
  max-width: 520px;
  margin: 20px 0 0;
  color: rgba(244,238,250,.82);
  font-size: clamp(14px, 1.7vw, 18px);
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
.hero-actions .btn {
  min-height: 50px;
  padding-inline: 25px;
  font-size: 13px;
  letter-spacing: .01em;
  text-transform: none;
}
.hero-actions .btn-outline {
  border-color: rgba(255,255,255,.32);
  background: rgba(11,8,25,.3);
  backdrop-filter: blur(10px);
}
.hero-arrow {
  width: 44px;
  height: 44px;
  background: rgba(8,6,18,.48);
  border-color: rgba(255,255,255,.18);
}
.hero-dots { bottom: 22px; }
.hero-dot { width: 9px; height: 9px; }

/* Benefits and homepage rhythm */
.trust-strip { background: color-mix(in srgb, var(--ink) 92%, #000); }
.trust-grid { min-height: 78px; }
.trust-item { padding-block: 15px; }
.store-section { padding-block: 66px; }
.store-section.compact { padding-top: 48px; }
.section-title { margin-bottom: 30px; }
.section-title h2 { font-size: clamp(30px, 3vw, 42px); }
.section-title p { color: #aaa1bc; }

.product-card {
  padding: 8px;
  border: 1px solid transparent;
  border-radius: 16px;
  transition: transform .22s ease, border-color .22s ease, background .22s ease, box-shadow .22s ease;
}
.product-card:hover {
  transform: translateY(-4px);
  border-color: var(--line);
  background: rgba(255,255,255,.025);
  box-shadow: 0 22px 46px rgba(0,0,0,.22);
}
.product-media { border-radius: 12px; }
.product-name { font-size: 16px; }
.collection-card {
  border-radius: 18px;
  box-shadow: 0 22px 60px rgba(0,0,0,.22);
}
.promo-banner {
  border-radius: 22px;
  box-shadow: 0 30px 80px rgba(0,0,0,.24);
}
.promo-copy { padding: 58px; }

/* Shop catalog */
.shop-page .site-header {
  position: relative;
}
.shop-page button.text-link {
  padding: 0;
  border: 0;
  color: var(--muted);
  background: transparent;
  cursor: pointer;
}
.shop-page button.text-link:hover,
.shop-page button.text-link:focus-visible {
  color: var(--pink-2);
  outline: none;
}

.catalog-intro {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  padding: 46px 0 12px;
}
.catalog-intro .section-kicker { margin-bottom: 10px; }
.catalog-intro h1 {
  margin: 0;
  font-size: clamp(34px, 5vw, 58px);
  letter-spacing: -.05em;
  line-height: 1;
}
.catalog-intro p {
  max-width: 570px;
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.7;
}
.catalog-stat {
  min-width: 185px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--panel);
  color: var(--muted);
  font-size: 12px;
}
.catalog-stat strong {
  display: block;
  margin-bottom: 3px;
  color: var(--text);
  font-size: 20px;
}
.shop-searchbar { padding-top: 18px; }
.shop-searchbar button.text-link {
  min-height: 44px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--muted);
  background: color-mix(in srgb, var(--panel-strong) 72%, transparent);
  cursor: pointer;
  transition: border-color .2s ease, color .2s ease, background .2s ease;
}
.shop-searchbar button.text-link:hover,
.shop-searchbar button.text-link:focus-visible {
  border-color: color-mix(in srgb, var(--pink) 68%, white 8%);
  color: var(--text);
  background: color-mix(in srgb, var(--pink) 12%, var(--panel));
  outline: none;
}
.shop-search {
  min-height: 54px;
  border-color: var(--line);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.025), 0 14px 36px rgba(0,0,0,.12);
}
.trust-strip.compact { box-shadow: 0 18px 45px rgba(0,0,0,.12); }
.shop-filters {
  top: 90px;
  border-radius: 16px;
  box-shadow: 0 20px 48px rgba(0,0,0,.16);
}
.results-head {
  padding-bottom: 15px;
  border-bottom: 1px solid var(--line-soft);
}
.results-head h1 { letter-spacing: -.035em; }
.filter-group-title { color: #eee8f5; }
.filter-checkbox input,
.shop-sale-toggle input { accent-color: var(--pink); }
.results-controls select,
.view-toggle-group { box-shadow: 0 12px 28px rgba(0,0,0,.14); }
.filter-chip { background: color-mix(in srgb, var(--pink) 8%, var(--panel-strong)); }

/* Product page */
.breadcrumb { padding-top: 28px; }
.product-detail {
  gap: clamp(38px, 5vw, 74px);
  padding-top: 28px;
}
.product-gallery {
  position: sticky;
  top: 102px;
  height: fit-content;
}
.product-gallery-label {
  position: absolute;
  z-index: 4;
  left: 18px;
  top: 18px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 11px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  color: rgba(255,255,255,.9);
  background: rgba(8,6,18,.48);
  backdrop-filter: blur(10px);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.product-gallery-label::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #7fe25d;
  box-shadow: 0 0 0 4px rgba(127,226,93,.13);
}
.room-mockup {
  border-radius: 18px;
  box-shadow: 0 28px 80px rgba(0,0,0,.28);
}
.room-frame {
  box-shadow: 0 12px 30px rgba(0,0,0,.42), 0 0 0 2px rgba(255,255,255,.04) inset;
}
.product-detail .product-info {
  padding: 28px 32px 30px;
  border: 1px solid var(--line-soft);
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(255,255,255,.055), rgba(255,255,255,.025));
  box-shadow: 0 25px 65px rgba(0,0,0,.17);
}
.finish-help {
  margin: 10px 0 0;
  color: var(--muted-2);
  font-size: 11px;
  line-height: 1.55;
}
.product-actions { margin-top: 24px; }
.feature-list { gap: 13px 18px; }

/* Account page */
.account-page { max-width: 920px; padding-top: 52px; }
.account-signin-panel {
  max-width: 520px;
  padding: 44px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background:
    radial-gradient(circle at 90% 0, color-mix(in srgb, var(--pink) 19%, transparent), transparent 17rem),
    var(--panel);
  box-shadow: 0 28px 80px rgba(0,0,0,.24);
}
.profile-card {
  padding: 30px;
  border-radius: 20px;
  background:
    radial-gradient(circle at 90% 0, color-mix(in srgb, var(--pink) 24%, transparent), transparent 18rem),
    linear-gradient(120deg, color-mix(in srgb, var(--pink) 13%, transparent), color-mix(in srgb, var(--lavender) 8%, transparent));
  box-shadow: 0 25px 65px rgba(0,0,0,.18);
}
.account-tile,
.account-panel-box,
.account-liability-note {
  border-radius: 14px;
}
.account-tile {
  min-height: 62px;
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}
.account-tile:hover {
  transform: translateY(-2px);
  border-color: color-mix(in srgb, var(--pink) 60%, white 10%);
  background: color-mix(in srgb, var(--pink) 7%, var(--panel));
}
.account-tile.is-coming-soon:hover { transform: none; background: var(--panel); }
.appearance-box {
  margin-top: 22px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(255,255,255,.05), rgba(255,255,255,.025));
  box-shadow: 0 24px 65px rgba(0,0,0,.16);
}
.appearance-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 17px;
}
.appearance-head h2 { margin: 0 0 5px; font-size: 18px; }
.appearance-head p { margin: 0; color: var(--muted); font-size: 12px; }
.theme-current { color: var(--muted-2); font-size: 12px; white-space: nowrap; }
.theme-option-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}
.theme-option-card {
  overflow: hidden;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 14px;
  color: var(--text);
  background: var(--panel);
  cursor: pointer;
  text-align: left;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.theme-option-card:hover { transform: translateY(-2px); border-color: rgba(255,255,255,.27); }
.theme-option-card.active {
  border-color: var(--pink);
  box-shadow: 0 0 0 1px var(--pink) inset, 0 12px 30px color-mix(in srgb, var(--pink) 18%, transparent);
}
.theme-swatch { display: block; height: 76px; }
.theme-swatch.midnight { background: linear-gradient(135deg, #080713, #2f2049 58%, #ef4f87); }
.theme-swatch.sakura { background: linear-gradient(135deg, #140a1c, #5d275d 52%, #ff8eba); }
.theme-swatch.crimson { background: linear-gradient(135deg, #10070c, #42141c 56%, #e74a65); }
.theme-swatch.neon { background: linear-gradient(135deg, #060813, #1d2f62 50%, #8f61ff); }
.theme-option-copy { display: block; padding: 11px 12px 13px; }
.theme-option-copy strong { display: block; font-size: 12px; }
.theme-option-copy small { display: block; margin-top: 3px; color: var(--muted-2); font-size: 10px; }

/* Checkout */
.checkout-page .site-header {
  border-bottom-color: #e8e2eb;
  background: rgba(255,255,255,.94);
  box-shadow: 0 8px 25px rgba(32,22,42,.06);
}
.checkout-page .main-nav,
.checkout-page .header-icons { color: #211a2a; }
.checkout-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  padding: 12px 0 24px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--paper-line);
}
.checkout-heading .section-kicker { color: var(--pink-dark); }
.checkout-heading h1 { margin: 0; font-size: clamp(30px, 4vw, 44px); letter-spacing: -.045em; }
.checkout-heading p { margin: 9px 0 0; color: var(--paper-muted); font-size: 13px; }
.checkout-security {
  padding: 10px 13px;
  border: 1px solid #e2dce6;
  border-radius: 999px;
  color: #5f5668;
  background: white;
  font-size: 11px;
  font-weight: 700;
  white-space: nowrap;
}
.checkout-panel,
.order-summary-box { border-radius: 14px; }
.checkout-panel {
  padding: 24px;
  margin-bottom: 16px;
  border: 1px solid var(--paper-line);
  background: white;
  box-shadow: 0 16px 38px rgba(34,24,44,.045);
}
.checkout-panel + .checkout-panel { padding-top: 24px; }
.order-summary-box { box-shadow: 0 22px 55px rgba(34,24,44,.08); }

/* Confirmation */
.confirmation-art {
  background:
    linear-gradient(90deg, #0e0b20 0%, transparent 25%),
    linear-gradient(0deg, rgba(14,11,32,.32), transparent 55%),
    url('/images/hero/collector-study-clean.png') center/cover no-repeat;
}
.check-circle { box-shadow: 0 0 0 9px rgba(128,216,74,.08); }
.confirmation-wrap .order-summary-box { border-radius: 16px; }

/* Legal/help pages */
.legal-page {
  max-width: 820px;
  margin-block: 44px 86px;
  padding: 42px 46px 54px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background:
    radial-gradient(circle at 100% 0, color-mix(in srgb, var(--pink) 13%, transparent), transparent 20rem),
    rgba(255,255,255,.035);
  box-shadow: 0 28px 80px rgba(0,0,0,.18);
}
.legal-page h1 {
  font-size: clamp(36px, 5vw, 54px);
  letter-spacing: -.05em;
}
.legal-page h2 {
  padding-top: 8px;
  color: #f7f1fb;
}
.legal-disclaimer { border-left: 3px solid var(--pink); }

/* Footer */
.site-footer {
  background: linear-gradient(180deg, rgba(7,5,15,.35), #070611 38%);
}
.footer-grid { padding-top: 48px; }
.footer-column a { transition: color .18s ease, transform .18s ease; }
.footer-column a:hover { transform: translateX(2px); color: var(--pink-2); }

@media (max-width: 1020px) {
  .hero-slider { height: clamp(500px, 66vh, 620px); }
  .hero-copy { width: min(560px, 65%); }
  .theme-option-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .product-gallery { position: static; }
}

@media (max-width: 820px) {
  .hero-slide-content { width: min(100% - 32px, var(--max-width)); }
  .hero-copy { width: min(520px, 74%); padding-top: 45px; }
  .hero-copy h1 { font-size: clamp(40px, 9vw, 68px); }
  .catalog-intro { align-items: start; flex-direction: column; }
  .catalog-stat { min-width: 0; }
  .product-detail .product-info { padding: 24px; }
  .checkout-heading { align-items: start; flex-direction: column; }
}

@media (max-width: 620px) {
  .hero-slider { height: 540px; max-height: none; }
  .hero-slide-media { background-position: 70% 18%; }
  .hero-slide-shade {
    background:
      linear-gradient(90deg, rgba(6,5,15,.92), rgba(6,5,15,.64) 70%, rgba(6,5,15,.38)),
      linear-gradient(0deg, rgba(6,5,15,.65), transparent 58%);
  }
  .hero-copy { width: 88%; padding: 36px 0 78px; }
  .hero-copy h1 { font-size: clamp(38px, 12vw, 56px); }
  .hero-copy p { font-size: 14px; }
  .hero-actions .btn { width: 100%; }
  .hero-arrow { width: 40px; height: 40px; }
  .hero-arrow.prev { left: 10px; }
  .hero-arrow.next { right: 10px; }
  .store-section { padding-block: 52px; }
  .promo-copy { padding: 34px 26px; }
  .theme-option-grid { grid-template-columns: 1fr; }
  .appearance-head { align-items: start; flex-direction: column; }
  .legal-page { margin-block: 24px 60px; padding: 30px 24px 38px; }
}

.checkout-page .site-header {
  color: var(--text);
  border-bottom-color: rgba(255,255,255,.08);
  background: rgba(11,9,25,.96);
  box-shadow: 0 10px 32px rgba(25,17,35,.16);
}
.checkout-page .main-nav,
.checkout-page .header-icons { color: var(--text); }

/* Use a clean campaign artwork instead of repeating a catalog thumbnail in the homepage promo. */
.promo-art {
  background:
    linear-gradient(90deg, var(--ink-2) 0%, transparent 32%),
    url('/images/hero/neon-city-clean.png') 68% center/cover no-repeat;
}
