:root {
  --ink: #090708;
  --ink-soft: #121012;
  --panel: #181316;
  --paper: #f4efe7;
  --white: #fffaf2;
  --muted: #aaa09a;
  --red: #bd1d24;
  --red-dark: #7f0d15;
  --gold: #d7aa4e;
  --gold-light: #f0d58a;
  --line: rgba(215, 170, 78, .25);
  --serif: "Cinzel", Georgia, serif;
  --sans: "Inter", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--ink);
  color: var(--white);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}
body.modal-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
img { display: block; max-width: 100%; }

.draft-bar {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 7px 20px;
  color: #d9cfca;
  background: #241a1d;
  border-bottom: 1px solid rgba(255,255,255,.08);
  font-size: 10px;
  letter-spacing: .08em;
  text-align: center;
}
.draft-bar span {
  padding: 3px 7px;
  color: #fff;
  background: var(--red);
  border-radius: 2px;
  font-weight: 800;
}

.site-header {
  position: absolute;
  z-index: 10;
  top: 34px;
  left: 0;
  right: 0;
  min-height: 86px;
  padding: 0 clamp(22px, 5vw, 80px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255,255,255,.1);
  background: linear-gradient(#080708aa, transparent);
}
.brand {
  display: inline-flex;
  align-items: center;
  font-family: var(--serif);
}
.brand .brand-wordmark {
  width: clamp(170px, 15vw, 225px);
  height: auto;
  border: 0;
  border-radius: 0;
  object-fit: contain;
  mix-blend-mode: screen;
  filter: drop-shadow(0 8px 18px rgba(0,0,0,.45));
}
nav {
  display: flex;
  align-items: center;
  gap: clamp(17px, 2.2vw, 34px);
  color: #ddd5d0;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .04em;
}
nav a { transition: color .2s; }
nav a:hover { color: var(--gold-light); }
.nav-lottery { color: var(--gold-light); }
.nav-contact {
  border: 1px solid rgba(215,170,78,.45);
  padding: 11px 15px;
}
.menu-button {
  display: none;
  border: 0;
  background: transparent;
  padding: 10px;
}
.menu-button span {
  display: block;
  width: 26px;
  height: 1px;
  background: white;
  margin: 7px 0;
}

.hero {
  min-height: 760px;
  height: calc(100vh - 34px);
  max-height: 980px;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 130px clamp(24px, 8vw, 142px) 70px;
  background: #090708;
}
.hero-banner {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 53% center;
  opacity: .77;
  filter: saturate(.85) contrast(1.08);
}
.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5,4,5,.96) 0%, rgba(5,4,5,.81) 37%, rgba(5,4,5,.15) 73%, rgba(5,4,5,.5) 100%),
    linear-gradient(0deg, #090708 0%, transparent 25%, rgba(0,0,0,.25) 100%);
}
.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 710px;
}
.kicker, .eyebrow {
  color: var(--gold-light);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .24em;
  text-transform: uppercase;
}
.kicker { margin: 0 0 24px; }
.kicker small {
  display: block;
  margin: 7px 0 0 35px;
  color: #b5aaa4;
  font-size: 8px;
  letter-spacing: .13em;
}
.kicker span {
  color: #fff;
  margin-right: 11px;
  font-size: 18px;
  vertical-align: -2px;
}
h1, h2, h3 { margin: 0; font-family: var(--serif); }
h1 {
  color: #fff;
  font-size: clamp(62px, 8vw, 126px);
  line-height: .82;
  letter-spacing: -.05em;
  text-shadow: 0 8px 40px #000;
}
h1 small {
  display: block;
  color: var(--red);
  font-size: .24em;
  line-height: 1;
  letter-spacing: .48em;
  margin: 0 0 16px 6px;
  text-shadow: 0 0 22px rgba(189,29,36,.45);
}
h1 small .hero-flag { width: 1.17em; height: .78em; vertical-align: middle; margin-left: .32em; }
.hero-brand-title {
  width: min(720px, 70vw);
  line-height: 1;
}
.hero-brand-title img {
  width: 100%;
  height: auto;
  mix-blend-mode: screen;
  filter: drop-shadow(0 12px 32px rgba(0,0,0,.62));
}
.hero-copy > p:not(.kicker):not(.continuity) {
  max-width: 600px;
  margin: 34px 0;
  color: #d0c8c3;
  font-size: clamp(16px, 1.45vw, 21px);
  line-height: 1.65;
}
.hero-copy > p strong { color: var(--gold-light); font-weight: 700; }
.translation {
  display: block;
  margin-top: 9px;
  color: #938984;
  font-size: .84em;
  line-height: 1.65;
}
.translation strong { color: #c8ad6a; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.button {
  min-height: 52px;
  padding: 0 23px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  cursor: pointer;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .07em;
  text-transform: uppercase;
  transition: transform .2s, background .2s, border-color .2s;
}
.button:hover { transform: translateY(-2px); }
.button-dual,
.paypal-button {
  flex-direction: column;
  gap: 3px;
}
.button-dual small,
.paypal-button small {
  font-size: 8px;
  font-weight: 600;
  letter-spacing: .04em;
  opacity: .8;
  text-transform: none;
}
.button-red {
  color: white;
  background: linear-gradient(135deg, #d4212a, #921019);
  border: 1px solid #db3038;
  box-shadow: 0 12px 40px rgba(155,12,22,.28);
}
.button-red:hover { background: #d4212a; }
.button-ghost {
  color: #fff;
  background: rgba(0,0,0,.25);
  border: 1px solid rgba(255,255,255,.28);
}
.button-ghost:hover { border-color: var(--gold); }
.continuity {
  margin: 22px 0 0;
  color: #a99e97;
  font-size: 10px;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.continuity small { color: #776e69; font-size: 8px; }
.scroll-note {
  position: absolute;
  z-index: 2;
  bottom: 30px;
  left: clamp(24px, 5vw, 80px);
  color: #847a76;
  font-size: 8px;
  letter-spacing: .22em;
}
.scroll-note span { color: var(--gold); margin-left: 12px; font-size: 15px; }

.assurance {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 0 clamp(20px, 6vw, 100px);
  background: #0e0b0d;
  border-top: 1px solid rgba(255,255,255,.08);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.assurance div {
  min-height: 104px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  border-right: 1px solid rgba(255,255,255,.07);
}
.assurance div:last-child { border-right: 0; }
.assurance b { color: var(--gold); font: 700 22px/1 var(--serif); }
.assurance span { display: grid; gap: 5px; color: #bdb3ae; font-size: 11px; text-transform: uppercase; letter-spacing: .06em; }
.assurance span small { color: #776e69; font-size: 8px; }

.section { padding: 120px clamp(24px, 7vw, 128px); }
.section-heading, .mini-heading {
  display: grid;
  grid-template-columns: 1fr .7fr;
  align-items: end;
  gap: 70px;
  margin-bottom: 66px;
}
.eyebrow { margin: 0 0 20px; }
h2 {
  color: #fff;
  font-size: clamp(42px, 5.3vw, 76px);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -.04em;
}
h2 em { color: var(--gold-light); font-style: normal; }
h2 > small {
  display: block;
  margin-top: 12px;
  color: #9e9490;
  font: 500 clamp(15px, 1.5vw, 20px)/1.4 var(--sans);
  letter-spacing: 0;
}
.section-heading > p {
  max-width: 500px;
  margin: 0;
  color: #9e9490;
  font-size: 14px;
  line-height: 1.75;
}

.collections { background: #100c0f; }
.category-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid rgba(255,255,255,.12);
  border-left: 1px solid rgba(255,255,255,.12);
}
.category {
  min-height: 400px;
  position: relative;
  overflow: hidden;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border-right: 1px solid rgba(255,255,255,.12);
  border-bottom: 1px solid rgba(255,255,255,.12);
  background: #0e0b0d;
  isolation: isolate;
  transition: transform .3s, box-shadow .3s;
}
.category::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(6,4,5,.05) 42%, rgba(6,4,5,.38) 66%, rgba(6,4,5,.97) 100%),
    linear-gradient(90deg, rgba(0,0,0,.15), transparent 45%, rgba(0,0,0,.12));
  pointer-events: none;
}
.category:hover {
  z-index: 3;
  transform: translateY(-8px);
  box-shadow: 0 24px 55px rgba(0,0,0,.42);
}
.category-art {
  position: absolute;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform .45s ease, filter .45s ease;
}
.category:hover .category-art {
  transform: scale(1.035);
  filter: saturate(1.08) contrast(1.03);
}
.category-number {
  position: absolute;
  z-index: 2;
  top: 22px;
  left: 22px;
  color: var(--gold);
  font: 600 9px var(--serif);
}
.category p {
  position: relative;
  z-index: 2;
  margin: 0 0 8px;
  color: var(--gold-light);
  font-size: 8px;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.category p small {
  display: block;
  margin-top: 5px;
  color: #837974;
  font-size: 7px;
  letter-spacing: .08em;
}
.category h3 {
  position: relative;
  z-index: 2;
  margin-bottom: 20px;
  font-size: clamp(28px, 2.4vw, 41px);
  font-weight: 600;
}
.category-link {
  position: relative;
  z-index: 2;
  color: #a89f99;
  font-size: 9px;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.category-link small { color: #766e69; font-size: 8px; }
.pokemon { --accent: #ffd94c; --glow: rgba(255,190,32,.25); }
.onepiece { --accent: #df313b; --glow: rgba(216,25,36,.27); }
.dragonball { --accent: #f1942e; --glow: rgba(255,121,26,.28); }
.magic { --accent: #77a4da; --glow: rgba(49,114,188,.25); }
.figures { --accent: #d7aa4e; --glow: rgba(215,170,78,.28); }

.featured {
  color: var(--ink);
  background: var(--paper);
}
.featured h2 { color: var(--ink); }
.featured h2 em { color: #a17a29; }
.featured .eyebrow { color: #966c16; }
.mini-heading > span {
  justify-self: end;
  color: #857d73;
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.offer-heading { display: flex; align-items: flex-end; gap: clamp(24px, 4vw, 70px); }
.offer-price { display: grid; justify-items: center; flex: 0 0 auto; line-height: 1; }
.offer-price s { color: #7c746d; font-size: clamp(20px, 2vw, 30px); text-decoration-thickness: 3px; text-decoration-color: #9c151c; }
.offer-price strong { margin-top: 8px; color: #c71922; font-size: clamp(48px, 6vw, 88px); font-weight: 900; }
.product-card {
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  max-width: 1260px;
  margin: 0 auto;
  border: 1px solid #d6cdbf;
  background: #fffaf2;
  box-shadow: 0 24px 80px rgba(48,29,19,.1);
}
.product-gallery {
  min-height: 650px;
  position: relative;
  display: grid;
  place-items: center;
  padding: 50px;
  border-right: 1px solid #d6cdbf;
  background:
    radial-gradient(circle at center, rgba(171,31,37,.15), transparent 32%),
    linear-gradient(145deg, #ede4d8, #f9f5ef);
}
.product-gallery .badge {
  position: absolute;
  top: 25px;
  left: 25px;
  padding: 7px 10px;
  color: white;
  background: var(--red);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .12em;
}
.product-gallery > p {
  position: absolute;
  bottom: 24px;
  color: #8c8178;
  font-size: 10px;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.product-real-photo { width: 100%; max-height: 500px; object-fit: contain; }
.nippon-photo-badge {
  position: absolute;
  left: 12px;
  bottom: 12px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  padding: 8px 12px;
  color: #efcc7a;
  border: 1px solid #b79548;
  border-radius: 6px;
  background: #171011;
  box-shadow: 0 3px 10px #0002;
  font: 800 14px/1.05 var(--serif);
  letter-spacing: .06em;
  pointer-events: none;
}
.nippon-photo-badge > span { font: 600 9px/1.2 var(--sans); letter-spacing: .18em; }
.sold-out-label {
  display: inline-block;
  padding: 6px 9px;
  color: #951721;
  border: 1px solid #ddafb3;
  border-radius: 4px;
  background: #f7e8e8;
  font: 700 14px/1.2 var(--sans);
}
.button.sold-out-button,
.button.sold-out-button:hover {
  width: 100%;
  color: #62574e;
  border: 1px solid #d7cbbb;
  background: #e6ded4;
  box-shadow: none;
  transform: none;
  cursor: not-allowed;
  font-size: 14px;
  letter-spacing: 0;
  text-transform: none;
}
.featured-jp .price { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; }
.featured-jp .price del { color: #75695f; font-size: 25px; }
.featured-jp .price small { flex-basis: 100%; margin: 0; font-size: 14px; letter-spacing: 0; text-transform: none; }
.featured-jp .product-gallery { padding-bottom: 80px; }
.featured-jp .buy-row { display: flex; flex-direction: column; align-items: stretch; gap: 12px; }
.featured-jp .buy-row .button { font-size: 14px; letter-spacing: 0; }
.featured-jp .product-points li,
.featured-jp .product-description,
.featured-jp .payment-note { font-size: 14px; }
.product-box-art {
  width: min(355px, 70vw);
  aspect-ratio: .72;
  padding: 30px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: white;
  text-align: center;
  border: 2px solid #d8b457;
  border-radius: 9px;
  background:
    radial-gradient(circle at 50% 43%, rgba(244,188,51,.46), transparent 20%),
    repeating-radial-gradient(circle at 50% 43%, transparent 0 42px, rgba(255,255,255,.07) 43px 45px),
    linear-gradient(135deg, #c91c29, #361018 55%, #09090b);
  box-shadow: -22px 28px 45px rgba(32,20,15,.27), inset 0 0 45px rgba(255,198,63,.18);
  transform: perspective(800px) rotateY(7deg);
}
.product-box-art::before {
  content: "";
  position: absolute;
  inset: 11px;
  border: 1px solid rgba(242,213,134,.55);
  border-radius: 4px;
}
.product-box-art span { position: relative; font: 700 32px/1.08 var(--serif); text-shadow: 0 3px 15px #000; }
.product-box-art b { position: relative; color: var(--gold-light); font: 800 17px var(--serif); letter-spacing: .08em; }
.product-box-art i { position: relative; font-size: 9px; letter-spacing: .18em; }
.product-box-art strong { position: relative; color: #dfb750; font: 700 32px var(--serif); }
.product-info { padding: clamp(38px, 5vw, 78px); align-self: center; }
.product-overline {
  color: #a17a29;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .15em;
}
.product-overline small { color: #978d83; font-size: 7px; }
.product-info h3 {
  margin: 13px 0;
  font-size: clamp(32px, 3.5vw, 55px);
  line-height: 1.1;
}
.rating { color: #766d65; font-size: 10px; }
.rating small { display: inline-block; margin: 5px 0 0 79px; color: #999087; }
.rating span { color: #b88c2d; letter-spacing: .12em; margin-right: 8px; }
.price {
  margin: 28px 0;
  color: #9c151c;
  font-size: 30px;
  font-weight: 800;
}
.price s { margin-right: 8px; color: #9e958d; font-size: 14px; font-weight: 500; }
.price small { display: block; margin-top: 6px; color: #8f867e; font-size: 9px; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; }
.product-description { color: #655e58; font-size: 13px; line-height: 1.75; }
.product-points { margin: 30px 0; padding: 0; list-style: none; border-top: 1px solid #ded6ca; }
.product-points li {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 13px 0;
  border-bottom: 1px solid #ded6ca;
  color: #7f766f;
  font-size: 11px;
}
.product-points b { color: #262021; }
.product-points li > span,
.product-points li > b { display: grid; gap: 3px; }
.product-points li small { color: #9a9189; font-size: 8px; font-weight: 500; }
.product-points .stock { color: #8a5b11; }
.buy-row {
  display: grid;
  grid-template-columns: auto 70px 1fr;
  align-items: center;
  gap: 10px;
}
.buy-row-direct { display: block; }
.buy-row-direct .paypal-button { width: 100%; }
.buy-row label { color: #766e67; font-size: 10px; }
.buy-row select {
  height: 52px;
  padding: 0 12px;
  border: 1px solid #cfc5b7;
  background: white;
}
.paypal-button {
  color: white;
  background: #0070ba;
  text-transform: none;
  letter-spacing: 0;
  font-size: 15px;
}
.paypal-button span { font-weight: 800; color: white; }
.paypal-button span::first-letter { color: white; }
.paypal-button:disabled,
.paypal-pending {
  color: #6f6761;
  background: #d8d1c7;
  box-shadow: none;
  cursor: not-allowed;
}
.paypal-button:disabled:hover,
.paypal-pending:hover { transform: none; }
.shipping-link {
  width: 100%;
  margin: 14px 0 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: #7a5a20;
  cursor: pointer;
  font-size: 10px;
  text-align: left;
  text-decoration: underline;
}
.payment-note { margin: 18px 0 0; color: #9a9189; font-size: 9px; line-height: 1.55; }

.lucky {
  background:
    radial-gradient(circle at 20% 18%, rgba(215,170,78,.13), transparent 28%),
    linear-gradient(115deg, #100c0f, #080708);
}
.lucky-intro {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
  align-items: center;
  gap: clamp(36px, 6vw, 90px);
}
.lucky-visual { position: relative; width: 100%; max-width: 420px; justify-self: center; }
.lucky-visual::before {
  content: "";
  position: absolute;
  inset: -12px;
  border: 1px solid var(--line);
  transform: rotate(-3deg);
}
.lucky-visual img {
  position: relative;
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  object-fit: cover;
  box-shadow: 0 32px 80px #000;
}
.lucky-copy { min-width: 0; }
.lucky-copy .eyebrow { margin-bottom: 16px; }
.lucky-copy > p:not(.eyebrow) {
  color: #c5bcb6;
  font-size: 15px;
  line-height: 1.8;
}
.lucky-copy strong, .lucky-bag-description strong { color: var(--white); }
.lucky-guarantee { margin-top: 28px; }
.lucky-guarantee-title { color: var(--gold-light); font-size: 14px; font-weight: 600; }
.lucky-pack-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 16px 0;
  padding: 0;
  list-style: none;
}
.lucky-pack-list li { padding: 15px 12px; border: 1px solid var(--line); background: #d7aa4e08; }
.lucky-pack-list span { display: block; margin-bottom: 5px; color: #c5bcb6; font-size: 13px; }
.lucky-pack-list strong { color: var(--gold-light); font-size: clamp(17px, 2vw, 23px); }
.lucky-guarantee > p:last-child { margin-bottom: 0; color: #b7aca6; font-size: 13px; line-height: 1.8; }
.lucky-bag-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px; margin-top: 64px; }
.lucky-bag { display: flex; flex-direction: column; min-width: 0; padding: clamp(24px, 3vw, 42px); border: 1px solid var(--line); border-top: 3px solid var(--gold); background: linear-gradient(145deg, #252017, #171213 65%); }
.lucky-bag-legend { border-top-color: #e35757; background: linear-gradient(145deg, #30191d, #171213 65%); }
.lucky-batch { margin: 0 0 16px; color: #c5bcb6; font-size: 12px; letter-spacing: .03em; }
.lucky-bag h3 { margin: 0; font: 600 clamp(23px, 2.5vw, 34px)/1.25 var(--sans); letter-spacing: -.025em; }
.lucky-bag h3 span { color: var(--gold-light); }
.lucky-price { margin: 18px 0 0; color: var(--white); font-size: clamp(38px, 4vw, 52px); font-weight: 600; letter-spacing: -.04em; font-variant-numeric: tabular-nums; }
.lucky-price > span { font-size: .55em; color: var(--gold-light); }
.lucky-bag-description { margin: 24px 0; color: #c5bcb6; font-size: 15px; line-height: 1.8; }
.lucky-value { display: grid; gap: 8px; padding: 22px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.lucky-value > span { color: #c5bcb6; font-size: 13px; }
.lucky-value > strong { color: var(--gold-light); font-size: 27px; font-weight: 600; }
.lucky-value > small { color: #b7aca6; font-size: 12px; line-height: 1.5; }
.lucky-legend-bonus { display: grid; grid-template-columns: minmax(0, 1fr) minmax(105px, .7fr); gap: 22px; align-items: center; margin-top: 26px; }
.lucky-legend-bonus h4 { margin: 0 0 12px; color: var(--gold-light); font-size: 18px; line-height: 1.45; font-weight: 600; }
.lucky-legend-bonus p { margin: 0 0 12px; color: #c5bcb6; font-size: 13px; line-height: 1.75; }
.lucky-legend-bonus p:last-child { margin-bottom: 0; }
.carddass-figure { width: 100%; max-width: 180px; margin: 0; justify-self: center; }
.carddass-photo { display: block; aspect-ratio: 286 / 407; overflow: hidden; border-radius: 7px; background: #090708; box-shadow: 0 12px 28px #0008; }
.carddass-photo img { width: 100%; height: auto; }
.carddass-photo:focus-visible { outline: 3px solid var(--gold-light); outline-offset: 5px; }
.carddass-figure figcaption { margin-top: 10px; color: #b7aca6; font-size: 11px; line-height: 1.5; text-align: center; }
.lucky-purchase { margin-top: auto; padding-top: 32px; }
.lucky-paypal-button { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 6px; width: 100%; min-height: 50px; padding: 14px 18px; border: 1px solid #a18b53; border-radius: 3px; color: #201c15; background: #d5ba75; font-size: 14px; font-weight: 600; }
.lucky-paypal-button:disabled { cursor: not-allowed; opacity: .7; }
.lucky-paypal-button strong { font-size: 17px; font-style: italic; }
.lucky-payment-status { margin: 22px 0 0; color: #b7aca6; font-size: 13px; line-height: 1.7; text-align: center; }
.lucky-payment-status strong { color: #ded4cc; font-weight: 500; }

.story {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
  gap: clamp(40px, 7vw, 110px);
  color: var(--ink);
  background: var(--paper);
}
.story h2 { color: var(--ink); font: 500 clamp(34px, 4vw, 58px)/1.15 var(--sans); letter-spacing: -.04em; text-transform: none; }
.story h2 em { display: block; margin-top: 8px; color: #896422; }
.story .eyebrow { color: #886020; font-size: 14px; letter-spacing: .03em; text-transform: none; }
.story-copy { color: #514b46; }
.about-discursive { font: 400 clamp(16px, 1.2vw, 18px)/1.85 var(--sans); text-transform: none; }
.about-discursive p { margin: 0 0 20px; }
.about-discursive p:last-child { margin-bottom: 0; }

.contact {
  display: grid;
  grid-template-columns: 1fr .7fr;
  align-items: end;
  gap: 70px;
  background:
    linear-gradient(90deg, rgba(189,29,36,.12), transparent 38%),
    #0d0a0c;
}
.email-button {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 25px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--gold-light);
  font-size: clamp(17px, 2vw, 26px);
  font-weight: 700;
}
.email-button > span { display: grid; gap: 7px; }
.email-button small {
  color: #bda65f;
  font-size: 8px;
  letter-spacing: .18em;
}
.email-button b { align-self: center; font-size: 26px; }
.contact > div:last-child p { color: #8f8580; font-size: 11px; line-height: 1.7; }

footer {
  min-height: 190px;
  padding: 40px clamp(24px, 5vw, 80px);
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  gap: 30px;
  color: #776e69;
  border-top: 1px solid rgba(255,255,255,.08);
  background: #080607;
}
.footer-brand .brand-wordmark { width: clamp(210px, 18vw, 270px); }
footer > p { text-align: center; font: 500 10px var(--serif); letter-spacing: .1em; }
footer > p small { color: #665e59; font: 500 8px var(--sans); }
footer > div { justify-self: end; display: grid; gap: 8px; text-align: right; font-size: 8px; letter-spacing: .12em; }

.modal {
  width: min(630px, calc(100% - 32px));
  padding: clamp(32px, 6vw, 60px);
  position: fixed;
  color: var(--ink);
  border: 1px solid #c8af71;
  background: #fffaf2;
  box-shadow: 0 35px 120px #000;
}
.modal::backdrop { background: rgba(5,4,5,.88); backdrop-filter: blur(5px); }
.modal .eyebrow { color: #986d19; }
.modal h2 { color: var(--ink); font-size: clamp(30px, 5vw, 50px); }
.modal > p:not(.eyebrow):not(.form-note) { color: #635b55; font-size: 13px; line-height: 1.7; }
.modal > small { display: block; margin-top: 13px; color: #8e847c; text-align: center; font-size: 9px; }
.modal-close {
  position: absolute;
  top: 14px;
  right: 16px;
  width: 36px;
  height: 36px;
  border: 0;
  background: transparent;
  color: #6c625a;
  cursor: pointer;
  font-size: 28px;
}
.modal-action { width: 100%; margin-top: 12px; }
.checkout-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin: 28px 0;
  padding: 0;
  list-style: none;
}
.checkout-steps li {
  display: grid;
  padding: 13px;
  color: #887f77;
  border: 1px solid #ded4c7;
  font-size: 9px;
}
.checkout-steps li.active { color: #191315; border-color: #b88c2d; background: #f6ead0; }
.checkout-steps span { color: #a37925; font-weight: 800; }
.checkout-steps b { margin: 6px 0 2px; font-size: 11px; }
.checkout-steps small { font-size: 8px; }
.modal-wide { width: min(780px, calc(100% - 32px)); }
.modal form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-top: 28px;
}
.modal label {
  display: grid;
  gap: 7px;
  color: #665e57;
  font-size: 10px;
}
.modal input, .modal textarea {
  width: 100%;
  padding: 13px;
  color: #181214;
  border: 1px solid #d1c6b8;
  background: white;
  outline: none;
}
.modal input:focus, .modal textarea:focus { border-color: #ab7e25; }
.modal .full { grid-column: 1 / -1; }
.form-note { color: #81776f; font-size: 9px; line-height: 1.55; }
.toast {
  position: fixed;
  z-index: 80;
  right: 24px;
  bottom: 24px;
  max-width: 350px;
  padding: 15px 18px;
  color: white;
  background: #22191c;
  border: 1px solid var(--line);
  box-shadow: 0 18px 60px #000;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: .25s;
  font-size: 11px;
}
.toast.show { opacity: 1; transform: none; }

@media (max-width: 1050px) {
  .site-header { min-height: 72px; }
  .menu-button { display: block; z-index: 5; }
  nav {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    padding: 25px;
    align-items: flex-start;
    flex-direction: column;
    background: #0c090b;
    border-bottom: 1px solid var(--line);
  }
  nav.open { display: flex; }
  .category-grid { grid-template-columns: 1fr 1fr; }
  .category-grid .figures:last-child { grid-column: 1 / -1; }
  .product-card { grid-template-columns: 1fr; }
  .product-gallery { min-height: 570px; border-right: 0; border-bottom: 1px solid #d6cdbf; }
  .lucky-legend-bonus { grid-template-columns: 1fr; }
  .carddass-figure { max-width: 165px; }
}

@media (max-width: 760px) {
  .draft-bar { align-items: flex-start; gap: 7px; flex-direction: column; }
  .site-header { top: 48px; }
  .hero {
    min-height: 740px;
    height: auto;
    padding-top: 160px;
  }
  .hero-banner { object-position: 72% center; opacity: .52; }
  .hero-shade {
    background:
      linear-gradient(90deg, rgba(5,4,5,.97), rgba(5,4,5,.64)),
      linear-gradient(0deg, #090708 0%, transparent 28%);
  }
  h1 { font-size: clamp(50px, 16vw, 86px); }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .assurance { grid-template-columns: 1fr 1fr; }
  .assurance div { min-height: 82px; justify-content: flex-start; padding: 15px; }
  .assurance div:nth-child(2) { border-right: 0; }
  .section { padding: 80px 22px; }
  .section-heading, .mini-heading, .lucky-intro, .lucky-bag-grid, .story, .contact {
    grid-template-columns: 1fr;
    gap: 42px;
  }
  .offer-heading { align-items: flex-start; flex-direction: column; }
  .mini-heading > span { justify-self: start; }
  .category { min-height: 310px; }
  .lucky-visual { order: 2; max-width: 320px; width: calc(100% - 24px); }
  .lucky-bag-grid { margin-top: 54px; gap: 24px; }
  .lucky-legend-bonus { grid-template-columns: minmax(0, 1fr) minmax(105px, .6fr); gap: 18px; }
  .product-gallery { min-height: 520px; padding: 35px; }
  .product-info { padding: 35px 24px 45px; }
  .buy-row { grid-template-columns: auto 70px; }
  .paypal-button { grid-column: 1 / -1; }
  footer { grid-template-columns: 1fr; text-align: center; }
  .footer-brand, footer > div { justify-self: center; text-align: center; }
  .modal form { grid-template-columns: 1fr; }
  .modal .full { grid-column: auto; }
}

@media (max-width: 500px) {
  .brand .brand-wordmark { width: 165px; }
  .hero-brand-title { width: min(92vw, 520px); }
  .category-grid { grid-template-columns: 1fr; }
  .category-grid .figures:last-child { grid-column: auto; }
  .category { min-height: 280px; }
  .checkout-steps { grid-template-columns: 1fr; }
  .lucky-legend-bonus { grid-template-columns: 1fr; }
  .carddass-figure { max-width: 180px; }
  .modal { padding: 44px 22px 30px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; }
}

/* Keep language selection visible outside the mobile navigation. */
.visually-hidden { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip-path: inset(50%); white-space: nowrap; border: 0; }
.language-control { flex: 0 0 auto; margin-left: 18px; order: 3; }
.language-control select { width: 138px; min-height: 44px; padding: 10px 8px; border: 1px solid var(--line); border-radius: 4px; background: #151012; color: var(--gold-light); font: 500 14px/1.3 var(--sans); cursor: pointer; }
.language-control select:focus-visible { outline: 2px solid var(--gold-light); outline-offset: 3px; }
.site-header > .brand, .catalog-header > .brand { flex-shrink: 0; }
.site-header > nav, .catalog-header > nav { margin-left: auto; }
.story-animation { margin: 32px 0 0; position: relative; overflow: hidden; border-radius: 8px; border: 1px solid #c6ac75; }
.story-animation > img { width: 100%; height: auto; aspect-ratio: 640 / 426; object-fit: cover; }
.animation-toggle { display: block; width: 100%; min-height: 44px; padding: 10px 14px; border: 0; border-top: 1px solid #c6ac75; background: #e9e0d1; color: #40331e; font: 500 14px/1.4 var(--sans); cursor: pointer; }
.animation-toggle:focus-visible { outline: 3px solid #896422; outline-offset: -4px; }
@media (max-width: 1440px) {
  .site-header, .catalog-header { gap: 12px; }
  .site-header > .menu-button, .catalog-header > .menu-button { display: block; margin-left: auto; order: 2; flex-shrink: 0; }
  .site-header > nav, .catalog-header > nav { display: none; position: absolute; top: 100%; left: 0; right: 0; margin: 0; padding: 24px; flex-direction: column; align-items: flex-start; gap: 20px; background: #0c090b; border-bottom: 1px solid var(--line); z-index: 20; font-size: 14px; }
  .site-header > nav.open, .catalog-header > nav.open { display: flex; }
  .catalog-header { position: relative; z-index: 20; }
  .language-control { margin-left: 0; }
}
@media (max-width: 500px) {
  .site-header, .catalog-header { padding-left: 14px; padding-right: 14px; gap: 8px; }
  .site-header .brand .brand-wordmark, .catalog-header .brand .brand-wordmark { width: clamp(115px, 34vw, 165px); }
  .language-control select { width: 108px; font-size: 13px; padding-left: 5px; padding-right: 3px; }
  .site-header .menu-button, .catalog-header .menu-button { padding: 7px; }
  .site-header .menu-button span, .catalog-header .menu-button span { width: 22px; }
}
