:root {
  --bg: #050814;
  --bg-soft: #0a1020;
  --panel: rgba(12, 18, 35, 0.92);
  --panel-2: rgba(16, 24, 46, 0.94);
  --line: rgba(133, 154, 203, 0.22);
  --text: #f7f8ff;
  --muted: #a9b2c8;
  --cyan: #62e8ff;
  --purple: #985cff;
  --purple-2: #6f43e8;
  --gold: #ffb31f;
  --gold-soft: #ffd166;
  --danger: #ff6b84;
  --success: #59e3ad;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.45);
  --radius: 22px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  background:
    radial-gradient(circle at 16% 6%, rgba(152, 92, 255, 0.13), transparent 28%),
    radial-gradient(circle at 89% 23%, rgba(98, 232, 255, 0.08), transparent 25%),
    linear-gradient(180deg, #040710 0%, #070b18 42%, #040711 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.26;
  background-image:
    radial-gradient(circle at 20% 30%, #fff 0 1px, transparent 1.4px),
    radial-gradient(circle at 70% 20%, #8bdfff 0 1px, transparent 1.4px),
    radial-gradient(circle at 90% 75%, #d4b5ff 0 1px, transparent 1.4px),
    linear-gradient(90deg, transparent 49.8%, rgba(98, 232, 255, 0.035) 50%, transparent 50.2%);
  background-size: 220px 220px, 300px 300px, 370px 370px, 92px 92px;
  z-index: -1;
}
button, input, select, a { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; text-decoration: none; }
button { color: inherit; }
img { max-width: 100%; display: block; }

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 200;
  padding: 12px 16px;
  border-radius: 12px;
  background: var(--gold);
  color: #111;
  font-weight: 900;
  transition: top .2s ease;
}
.skip-link:focus { top: 16px; }

.store-demo-bar {
  min-height: 36px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  padding: 7px 20px;
  color: #d8ddef;
  background: linear-gradient(90deg, rgba(96, 38, 164, .88), rgba(18, 92, 130, .82));
  border-bottom: 1px solid rgba(255,255,255,.12);
  font-size: .78rem;
  text-align: center;
}
.store-demo-bar strong { color: #fff; letter-spacing: .04em; }

.store-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--line);
  background: rgba(4, 8, 18, .89);
  backdrop-filter: blur(18px);
  box-shadow: 0 14px 40px rgba(0,0,0,.22);
}
.store-header-main {
  width: min(1500px, calc(100% - 36px));
  min-height: 92px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(240px, 360px) minmax(260px, 1fr) auto;
  gap: 28px;
  align-items: center;
}
.store-brand { display: flex; align-items: center; gap: 14px; min-width: 0; }
.store-brand img { width: 72px; height: 72px; filter: drop-shadow(0 0 18px rgba(148,92,255,.48)); }
.store-brand span { min-width: 0; }
.store-brand b { display: block; font-size: clamp(1.55rem, 2.3vw, 2.45rem); line-height: 1; letter-spacing: -.04em; }
.store-brand em { color: var(--purple); font-style: normal; }
.store-brand small { display: block; margin-top: 7px; color: var(--muted); font-size: .78rem; }
.store-search {
  height: 50px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 15px 0 18px;
  border: 1px solid rgba(152,92,255,.5);
  border-radius: 16px;
  background: rgba(10, 16, 31, .9);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.02);
}
.store-search:focus-within { border-color: var(--cyan); box-shadow: 0 0 0 3px rgba(98,232,255,.1); }
.store-search input { width: 100%; border: 0; outline: 0; color: var(--text); background: transparent; }
.store-search input::placeholder { color: #79839c; }
.store-search > span { color: var(--purple); font-size: 1.8rem; transform: rotate(-15deg); }
.store-actions { display: flex; align-items: stretch; gap: 8px; }
.store-actions > a,
.cart-button {
  min-height: 48px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(12, 18, 35, .82);
  color: var(--muted);
  cursor: pointer;
  white-space: nowrap;
}
.store-actions > a:hover,
.cart-button:hover { color: #fff; border-color: rgba(152,92,255,.65); transform: translateY(-1px); }
.store-actions b, .cart-button b { font-size: .75rem; }
.store-pk span {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  color: #231500;
  background: var(--gold);
  font-weight: 950;
  box-shadow: 0 0 18px rgba(255,179,31,.28);
}
.store-account span { color: var(--cyan); font-size: 1.45rem; }
.cart-button { position: relative; }
.cart-button em {
  position: absolute;
  top: -7px;
  right: -6px;
  min-width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  padding: 0 5px;
  border-radius: 999px;
  color: #111;
  background: var(--gold);
  font-size: .68rem;
  font-style: normal;
  font-weight: 950;
}
.store-nav {
  width: min(1500px, calc(100% - 36px));
  margin: 0 auto;
  min-height: 48px;
  display: flex;
  align-items: center;
  gap: 6px;
  overflow-x: auto;
  scrollbar-width: none;
}
.store-nav::-webkit-scrollbar { display: none; }
.store-nav a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 12px 12px 0 0;
  color: #c1c8d9;
  font-weight: 750;
  white-space: nowrap;
}
.store-nav a:hover, .store-nav a.active { color: #fff; background: rgba(152,92,255,.09); }
.store-nav a.active { box-shadow: inset 0 -3px 0 var(--purple); }
.store-nav .back-club { margin-left: auto; color: var(--cyan); }

.store-shell { width: min(1500px, calc(100% - 36px)); margin: 28px auto 56px; }
.hero-layout { display: grid; grid-template-columns: minmax(0, 1fr) 340px; gap: 18px; }
.store-hero {
  min-height: 390px;
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(360px, 1.1fr);
  align-items: center;
  border: 1px solid rgba(126, 94, 255, .42);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 72% 45%, rgba(98,232,255,.18), transparent 24%),
    radial-gradient(circle at 56% 25%, rgba(152,92,255,.28), transparent 36%),
    linear-gradient(120deg, rgba(9,13,29,.96) 0%, rgba(15,11,45,.96) 57%, rgba(6,27,49,.93) 100%);
  box-shadow: var(--shadow), inset 0 0 80px rgba(91, 57, 183, .08);
}
.store-hero::before,
.store-hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(98,232,255,.14);
}
.store-hero::before { width: 380px; height: 380px; right: 13%; top: 8%; box-shadow: 0 0 70px rgba(98,232,255,.08); }
.store-hero::after { width: 190px; height: 190px; left: 44%; bottom: -110px; border-color: rgba(255,179,31,.18); }
.hero-copy { position: relative; z-index: 2; padding: 46px 0 46px 48px; }
.eyebrow { color: var(--purple); font-size: .74rem; font-weight: 950; letter-spacing: .16em; }
.hero-copy h1 { margin: 10px 0 12px; font-size: clamp(2.2rem, 4.6vw, 4.65rem); line-height: .94; letter-spacing: -.055em; }
.hero-copy h1 strong { display: block; color: transparent; background: linear-gradient(90deg, #fff, #c6adff 55%, #6be9ff); -webkit-background-clip: text; background-clip: text; }
.hero-copy p { max-width: 620px; margin: 0; color: #c1c9da; font-size: 1rem; }
.hero-features { display: flex; flex-wrap: wrap; gap: 8px; margin: 24px 0; }
.hero-features span { padding: 8px 11px; border: 1px solid var(--line); border-radius: 999px; color: #dce1ef; background: rgba(4,8,18,.46); font-size: .73rem; }
.primary-cta,
.secondary-cta,
.empty-products button,
.store-dialog button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 12px 22px;
  border: 1px solid rgba(255,217,118,.72);
  border-radius: 12px;
  color: #161006;
  background: linear-gradient(180deg, #ffd165, #f4a800);
  box-shadow: 0 12px 28px rgba(255,177,27,.2), inset 0 1px 0 rgba(255,255,255,.65);
  font-weight: 950;
  cursor: pointer;
}
.primary-cta:hover, .secondary-cta:hover, .empty-products button:hover, .store-dialog button:hover { transform: translateY(-2px); filter: brightness(1.05); }
.primary-cta span, .secondary-cta span { font-size: 1.35rem; }
.hero-product { position: relative; z-index: 1; min-height: 360px; display: grid; place-items: center; padding: 20px 30px 20px 0; }
.hero-product > img { width: min(100%, 610px); filter: drop-shadow(0 32px 35px rgba(0,0,0,.42)); }
.hero-price {
  position: absolute;
  right: 28px;
  top: 28px;
  display: flex;
  flex-direction: column;
  padding: 14px 18px;
  border: 1px solid rgba(255,179,31,.55);
  border-radius: 14px;
  background: rgba(6, 12, 27, .78);
  box-shadow: 0 0 28px rgba(255,179,31,.08);
}
.hero-price small { color: #aeb6c9; font-size: .65rem; text-transform: uppercase; }
.hero-price strong { color: var(--gold); font-size: 1.65rem; }
.hero-price span { color: #d6dbea; font-size: .66rem; }

.pk-panel {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 24px;
  border: 1px solid rgba(255,179,31,.35);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(14,21,41,.98), rgba(8,13,28,.98));
  box-shadow: var(--shadow);
}
.pk-head { display: flex; align-items: center; gap: 14px; padding-bottom: 8px; }
.pk-head > span {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border: 3px solid var(--gold);
  border-radius: 50%;
  color: var(--gold);
  background: radial-gradient(circle, rgba(255,179,31,.15), transparent 72%);
  font-size: 1.18rem;
  font-weight: 950;
  box-shadow: 0 0 24px rgba(255,179,31,.2);
}
.pk-head h2 { margin: 0; font-size: 1.4rem; }
.pk-head p { margin: 2px 0 0; color: var(--muted); font-size: .8rem; }
.pk-benefit { display: flex; gap: 12px; padding: 13px; border: 1px solid var(--line); border-radius: 14px; background: rgba(16,24,46,.72); }
.pk-benefit i { width: 38px; height: 38px; display: grid; place-items: center; flex: 0 0 auto; border-radius: 10px; color: var(--cyan); background: rgba(98,232,255,.08); font-style: normal; font-size: 1.2rem; }
.pk-benefit:nth-of-type(3) i { color: var(--purple); background: rgba(152,92,255,.1); }
.pk-benefit:nth-of-type(4) i { color: var(--gold); background: rgba(255,179,31,.1); }
.pk-benefit span { min-width: 0; }
.pk-benefit b, .pk-benefit small { display: block; }
.pk-benefit b { font-size: .82rem; }
.pk-benefit small { margin-top: 3px; color: var(--muted); font-size: .7rem; }
.pk-panel > a { margin-top: auto; display: flex; justify-content: space-between; padding: 13px 4px 2px; color: var(--gold); font-size: .75rem; font-weight: 900; }

.category-section, .products-section { scroll-margin-top: 160px; }
.category-section { margin-top: 34px; }
.section-heading { display: flex; justify-content: space-between; align-items: end; gap: 20px; margin-bottom: 16px; }
.section-heading h2 { margin: 6px 0 0; font-size: clamp(1.45rem, 2.4vw, 2.3rem); letter-spacing: -.035em; }
.section-heading p { margin: 7px 0 0; color: var(--muted); font-size: .9rem; }
.section-heading > button {
  padding: 9px 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  color: #dce1ef;
  background: rgba(14,21,40,.72);
  cursor: pointer;
}
.category-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; }
.category-card {
  min-height: 116px;
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 52px 1fr;
  grid-template-areas: "icon title" "icon sub";
  align-items: center;
  column-gap: 13px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 16px;
  color: #fff;
  background: linear-gradient(135deg, rgba(15,23,44,.95), rgba(8,13,28,.95));
  text-align: left;
  cursor: pointer;
}
.category-card::after { content: "›"; position: absolute; right: 15px; top: 13px; color: #68748e; }
.category-card:hover, .category-card.active { transform: translateY(-3px); border-color: currentColor; box-shadow: 0 15px 35px rgba(0,0,0,.26); }
.category-card > span { grid-area: icon; width: 52px; height: 52px; display: grid; place-items: center; border-radius: 14px; background: rgba(255,255,255,.055); font-size: 1.75rem; font-weight: 950; }
.category-card > b { grid-area: title; align-self: end; font-size: .94rem; }
.category-card > small { grid-area: sub; align-self: start; color: var(--muted); font-size: .7rem; }
.category-games { color: var(--cyan); }
.category-anime { color: #c485ff; }
.category-tech { color: #5de7d6; }
.category-collect { color: var(--gold); }
.category-kaioh { color: #a879ff; }

.products-section { margin-top: 38px; }
.products-heading { align-items: center; }
.sort-control { display: flex; align-items: center; gap: 10px; color: var(--muted); font-size: .75rem; }
.sort-control select { min-height: 42px; padding: 0 38px 0 13px; border: 1px solid var(--line); border-radius: 11px; color: #e8ebf4; background: #10172b; outline: 0; }
.product-grid { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 14px; }
.product-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 430px;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: linear-gradient(180deg, rgba(16,23,43,.97), rgba(8,13,27,.98));
  box-shadow: 0 15px 38px rgba(0,0,0,.22);
}
.product-card:hover { transform: translateY(-5px); border-color: rgba(152,92,255,.5); box-shadow: 0 22px 48px rgba(0,0,0,.32); }
.product-art { min-height: 220px; display: grid; place-items: center; padding: 22px 18px; background: radial-gradient(circle at center, rgba(107,72,203,.16), transparent 64%); }
.product-art img { width: 100%; height: 190px; object-fit: contain; filter: drop-shadow(0 18px 20px rgba(0,0,0,.33)); }
.product-badge { position: absolute; top: 12px; left: 12px; z-index: 2; padding: 6px 8px; border: 1px solid rgba(152,92,255,.5); border-radius: 999px; color: #d9c8ff; background: rgba(20,11,44,.84); font-size: .56rem; font-weight: 950; letter-spacing: .08em; }
.favorite-button { position: absolute; top: 10px; right: 10px; z-index: 2; width: 34px; height: 34px; border: 1px solid var(--line); border-radius: 50%; color: #cbd2e1; background: rgba(6,10,21,.78); cursor: pointer; }
.favorite-button:hover, .favorite-button.active { color: #ff7bac; border-color: rgba(255,123,172,.55); }
.product-info { display: flex; flex: 1; flex-direction: column; padding: 18px; border-top: 1px solid rgba(255,255,255,.04); }
.product-category { color: var(--cyan); font-size: .62rem; font-weight: 850; text-transform: uppercase; letter-spacing: .1em; }
.product-info h3 { margin: 6px 0 2px; font-size: .98rem; line-height: 1.22; }
.product-info > small { color: var(--muted); font-size: .72rem; }
.product-price-row { margin-top: auto; padding-top: 17px; }
.product-price-row strong { display: block; color: var(--gold); font-size: 1.26rem; }
.product-price-row small { color: #7f8aa2; font-size: .62rem; }
.product-actions { display: grid; grid-template-columns: 1fr 44px; gap: 8px; margin-top: 12px; }
.product-actions button {
  min-height: 42px;
  border: 1px solid rgba(255,179,31,.65);
  border-radius: 10px;
  color: #171006;
  background: linear-gradient(180deg, #ffc94d, #f0a000);
  font-size: .72rem;
  font-weight: 950;
  cursor: pointer;
}
.product-actions button:hover { filter: brightness(1.07); transform: translateY(-1px); }
.product-actions .details-button { color: #d7deee; border-color: var(--line); background: rgba(18,26,47,.9); }
.empty-products { padding: 64px 22px; border: 1px dashed rgba(152,92,255,.35); border-radius: 18px; text-align: center; background: rgba(12,18,35,.55); }
.empty-products > span { font-size: 3rem; color: var(--purple); }
.empty-products h3 { margin: 8px 0 4px; }
.empty-products p { margin: 0 0 18px; color: var(--muted); }

.official-banner {
  position: relative;
  overflow: hidden;
  min-height: 260px;
  display: grid;
  grid-template-columns: .9fr 1.1fr auto;
  align-items: center;
  gap: 22px;
  margin-top: 34px;
  padding: 30px 34px;
  border: 1px solid rgba(152,92,255,.44);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 68% 50%, rgba(152,92,255,.24), transparent 31%),
    linear-gradient(110deg, rgba(12,17,34,.98), rgba(23,12,59,.94), rgba(8,17,33,.98));
  box-shadow: var(--shadow);
}
.official-banner::after { content: ""; position: absolute; inset: 0; pointer-events: none; background: linear-gradient(90deg, transparent 0 30%, rgba(255,255,255,.025) 50%, transparent 70%); }
.official-copy { position: relative; z-index: 2; }
.official-copy h2 { margin: 7px 0 8px; font-size: clamp(1.7rem, 3vw, 3rem); }
.official-copy p { color: #c0c7d7; max-width: 560px; }
.official-copy > div { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 19px; }
.official-copy > div span { padding: 8px 10px; border: 1px solid var(--line); border-radius: 999px; color: #e4e8f2; font-size: .69rem; }
.official-banner img { width: 100%; max-height: 250px; object-fit: contain; position: relative; z-index: 1; }
.secondary-cta { position: relative; z-index: 2; white-space: nowrap; }
.trust-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; margin-top: 18px; border: 1px solid var(--line); border-radius: 16px; overflow: hidden; background: var(--line); }
.trust-strip > div { display: grid; grid-template-columns: 42px 1fr; grid-template-areas: "icon title" "icon sub"; gap: 0 12px; align-items: center; padding: 17px 20px; background: rgba(10,16,31,.96); }
.trust-strip span { grid-area: icon; font-size: 1.35rem; color: var(--cyan); }
.trust-strip b { grid-area: title; font-size: .78rem; }
.trust-strip small { grid-area: sub; color: var(--muted); font-size: .65rem; }
.store-footer { min-height: 70px; display: flex; justify-content: center; align-items: center; flex-wrap: wrap; gap: 10px; padding: 18px; border-top: 1px solid var(--line); color: #7f899f; background: rgba(4,7,14,.9); font-size: .72rem; }
.store-footer a { color: #bba3ff; font-weight: 800; }

.drawer-backdrop, .dialog-backdrop { position: fixed; inset: 0; z-index: 90; background: rgba(0,0,0,.66); backdrop-filter: blur(4px); }
.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 100;
  width: min(430px, 100%);
  height: 100dvh;
  display: flex;
  flex-direction: column;
  padding: 24px;
  border-left: 1px solid rgba(152,92,255,.45);
  background: #080d1b;
  box-shadow: -30px 0 70px rgba(0,0,0,.55);
  transform: translateX(105%);
  transition: transform .25s ease;
}
.cart-drawer.open { transform: translateX(0); }
.cart-head { display: flex; justify-content: space-between; gap: 15px; padding-bottom: 18px; border-bottom: 1px solid var(--line); }
.cart-head h2 { margin: 4px 0 0; }
.cart-head button { width: 40px; height: 40px; border: 1px solid var(--line); border-radius: 50%; color: #fff; background: rgba(255,255,255,.03); font-size: 1.65rem; cursor: pointer; }
.cart-items { flex: 1; overflow: auto; padding: 16px 2px; }
.cart-empty { flex: 1; display: grid; place-items: center; align-content: center; text-align: center; color: var(--muted); }
.cart-empty span { font-size: 3rem; }
.cart-empty b { color: #fff; margin-top: 8px; }
.cart-empty small { margin-top: 4px; }
.cart-item { display: grid; grid-template-columns: 72px 1fr auto; gap: 12px; align-items: center; padding: 12px 0; border-bottom: 1px solid var(--line); }
.cart-item > img { width: 72px; height: 72px; object-fit: contain; padding: 5px; border: 1px solid var(--line); border-radius: 12px; background: rgba(255,255,255,.025); }
.cart-item h3 { margin: 0; font-size: .83rem; }
.cart-item strong { display: block; margin-top: 3px; color: var(--gold); font-size: .8rem; }
.cart-item-controls { display: flex; align-items: center; gap: 7px; margin-top: 8px; }
.cart-item-controls button { width: 27px; height: 27px; border: 1px solid var(--line); border-radius: 8px; color: #fff; background: rgba(255,255,255,.04); cursor: pointer; }
.cart-item-controls span { min-width: 20px; text-align: center; font-size: .74rem; }
.cart-remove { border: 0; color: var(--danger); background: none; cursor: pointer; }
.cart-summary { padding-top: 18px; border-top: 1px solid var(--line); }
.cart-summary > div { display: flex; justify-content: space-between; align-items: center; }
.cart-summary > div strong { color: var(--gold); font-size: 1.25rem; }
.cart-summary > small { display: block; margin: 7px 0 14px; color: var(--muted); font-size: .68rem; }
.cart-summary > button { width: 100%; min-height: 46px; border-radius: 11px; font-weight: 900; cursor: pointer; }
#checkoutButton { border: 1px solid rgba(255,179,31,.65); color: #161006; background: linear-gradient(180deg, #ffd164, #efa100); }
#clearCart { margin-top: 8px; border: 1px solid var(--line); color: #c5ccdc; background: rgba(255,255,255,.03); }
.store-dialog {
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 110;
  width: min(470px, calc(100% - 32px));
  transform: translate(-50%, -50%);
  padding: 30px;
  border: 1px solid rgba(152,92,255,.54);
  border-radius: 20px;
  background: linear-gradient(180deg, #11182d, #080d1b);
  box-shadow: 0 35px 90px rgba(0,0,0,.65);
  text-align: center;
}
.dialog-icon { width: 62px; height: 62px; display: grid; place-items: center; margin: 0 auto 14px; border: 1px solid rgba(152,92,255,.52); border-radius: 50%; color: #d8c4ff; background: rgba(152,92,255,.1); font-size: 1.7rem; }
.store-dialog h2 { margin: 0; }
.store-dialog p { color: var(--muted); }
.store-toast { position: fixed; left: 50%; bottom: 25px; z-index: 130; transform: translateX(-50%); padding: 12px 18px; border: 1px solid rgba(89,227,173,.45); border-radius: 999px; color: #dfffee; background: rgba(8,28,24,.94); box-shadow: 0 15px 35px rgba(0,0,0,.4); font-size: .8rem; font-weight: 800; }

.orders-page { min-height: 100dvh; display: flex; flex-direction: column; }
.compact-header .store-header-main { grid-template-columns: 1fr auto; }
.orders-header-actions { display: flex; gap: 10px; }
.orders-header-actions a, .orders-secondary { padding: 10px 14px; border: 1px solid var(--line); border-radius: 11px; color: #dce2ee; background: rgba(255,255,255,.03); }
.orders-shell { width: min(1100px, calc(100% - 36px)); flex: 1; margin: 50px auto; }
.orders-hero { text-align: center; }
.orders-hero h1 { margin: 8px 0; font-size: clamp(2.3rem, 5vw, 4.6rem); }
.orders-hero p { max-width: 720px; margin: 0 auto; color: var(--muted); }
.orders-empty { max-width: 760px; margin: 42px auto 0; padding: 48px 34px; border: 1px solid rgba(152,92,255,.38); border-radius: 22px; background: rgba(12,18,35,.82); text-align: center; box-shadow: var(--shadow); }
.orders-empty > span { width: 72px; height: 72px; display: grid; place-items: center; margin: 0 auto; border-radius: 20px; color: var(--cyan); background: rgba(98,232,255,.08); font-size: 2rem; }
.orders-empty h2 { margin: 18px 0 7px; }
.orders-empty p { color: var(--muted); }
.orders-empty > div { display: flex; justify-content: center; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.orders-secondary { display: inline-flex; align-items: center; }

@media (max-width: 1260px) {
  .store-header-main { grid-template-columns: minmax(230px, 310px) 1fr; }
  .store-actions { grid-column: 1 / -1; justify-content: flex-end; margin-top: -12px; padding-bottom: 12px; }
  .hero-layout { grid-template-columns: 1fr; }
  .pk-panel { display: grid; grid-template-columns: repeat(3, 1fr); align-items: stretch; }
  .pk-head { grid-column: 1 / -1; }
  .pk-panel > a { grid-column: 1 / -1; }
  .category-grid { grid-template-columns: repeat(3, 1fr); }
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .official-banner { grid-template-columns: 1fr 1fr; }
  .official-banner .secondary-cta { grid-column: 1 / -1; justify-self: start; }
}

@media (max-width: 900px) {
  .store-demo-bar { flex-direction: column; gap: 1px; padding: 6px 12px; }
  .store-header { position: relative; }
  .store-header-main { grid-template-columns: 1fr; gap: 12px; padding: 16px 0; }
  .store-brand { justify-content: center; }
  .store-brand img { width: 62px; height: 62px; }
  .store-search { order: 3; }
  .store-actions { grid-column: auto; justify-content: center; margin: 0; padding: 0; overflow-x: auto; }
  .store-actions > a, .cart-button { min-width: max-content; }
  .store-nav { width: calc(100% - 18px); }
  .store-nav .back-club { margin-left: 0; }
  .store-shell { width: min(100% - 22px, 1500px); margin-top: 14px; }
  .store-hero { grid-template-columns: 1fr; }
  .hero-copy { padding: 36px 28px 0; }
  .hero-product { min-height: 300px; padding: 0 20px 10px; }
  .hero-price { right: 18px; top: 18px; }
  .pk-panel { grid-template-columns: 1fr; }
  .pk-head, .pk-panel > a { grid-column: auto; }
  .category-grid { grid-template-columns: repeat(2, 1fr); }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .official-banner { grid-template-columns: 1fr; text-align: center; }
  .official-copy > div { justify-content: center; }
  .official-banner .secondary-cta { grid-column: auto; justify-self: center; }
  .trust-strip { grid-template-columns: repeat(2, 1fr); }
  .compact-header .store-header-main { grid-template-columns: 1fr; }
  .orders-header-actions { justify-content: center; }
}

@media (max-width: 560px) {
  .store-brand small { max-width: 240px; }
  .store-actions .store-pk { display: none; }
  .store-actions > a, .cart-button { flex: 1; justify-content: center; }
  .store-nav a { padding: 8px 13px; }
  .store-nav a span { display: none; }
  .store-nav .back-club span { display: inline; }
  .hero-copy { padding: 30px 20px 0; }
  .hero-copy h1 { font-size: 2.65rem; }
  .hero-features { gap: 6px; }
  .hero-features span { font-size: .66rem; }
  .hero-price { position: static; margin-top: -28px; }
  .hero-product { min-height: 280px; }
  .category-grid { grid-template-columns: 1fr; }
  .category-card { min-height: 95px; }
  .section-heading, .products-heading { align-items: stretch; flex-direction: column; }
  .sort-control { justify-content: space-between; }
  .sort-control select { flex: 1; }
  .product-grid { grid-template-columns: 1fr; }
  .product-card { min-height: 390px; }
  .product-art { min-height: 200px; }
  .official-banner { padding: 28px 20px; }
  .trust-strip { grid-template-columns: 1fr; }
  .store-footer { flex-direction: column; gap: 3px; }
  .cart-drawer { padding: 18px; }
}

@media (prefers-reduced-motion: no-preference) {
  .store-actions > a,
  .cart-button,
  .category-card,
  .product-card,
  .primary-cta,
  .secondary-cta,
  .product-actions button { transition: transform .18s ease, border-color .18s ease, filter .18s ease, color .18s ease, box-shadow .18s ease; }
}

/* V83.7.4 — produto completo e páginas legais */
.product-title-link { color: inherit; text-decoration: none; }
.product-title-link:hover h3 { color: var(--cyan); }
.product-art { text-decoration: none; }
.product-actions .details-button { display: grid; place-items: center; text-decoration: none; }
.cart-item-variant { display: block; margin-top: 3px; color: var(--muted); font-size: .66rem; }
.store-footer-legal a { color: #bba3ff; }

.product-page-body, .legal-page-body { min-height: 100dvh; }
.product-detail-shell, .legal-shell { width: min(1260px, calc(100% - 36px)); margin: 30px auto 60px; }
.product-breadcrumb { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; margin-bottom: 22px; color: var(--muted); font-size: .76rem; }
.product-breadcrumb a { color: #cbbaff; }
.product-loading { min-height: 380px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 22px; color: var(--muted); background: rgba(10,16,31,.8); }
.product-detail-grid { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(340px, .9fr); gap: 26px; align-items: start; }
.product-gallery-panel, .product-purchase-panel, .product-information article, .product-spec-grid { border: 1px solid var(--line); border-radius: 22px; background: linear-gradient(180deg, rgba(17,24,45,.96), rgba(8,13,27,.96)); box-shadow: var(--shadow); }
.product-gallery-panel { padding: 20px; }
.product-main-image { min-height: 520px; display: grid; place-items: center; border: 1px solid rgba(152,92,255,.18); border-radius: 18px; background: radial-gradient(circle at 50% 35%, rgba(152,92,255,.13), transparent 55%), rgba(255,255,255,.018); }
.product-main-image img { width: min(90%, 580px); max-height: 500px; object-fit: contain; }
.product-thumbnails { display: flex; gap: 10px; overflow-x: auto; margin-top: 14px; padding-bottom: 3px; }
.product-thumbnails button { flex: 0 0 78px; width: 78px; height: 78px; padding: 5px; border: 1px solid var(--line); border-radius: 12px; background: rgba(255,255,255,.025); cursor: pointer; }
.product-thumbnails button.active { border-color: var(--purple); box-shadow: 0 0 0 2px rgba(152,92,255,.15); }
.product-thumbnails img { width: 100%; height: 100%; object-fit: contain; }
.product-purchase-panel { position: sticky; top: 120px; padding: 30px; }
.product-detail-badge { position: static; display: inline-flex; margin-bottom: 18px; }
.product-purchase-panel h1 { margin: 8px 0 6px; font-size: clamp(2rem, 4vw, 3.5rem); line-height: 1.02; }
.product-detail-subtitle { margin: 0; color: var(--muted); }
.product-detail-price { display: grid; gap: 4px; margin: 24px 0 14px; }
.product-detail-price del { color: #8b93a5; font-size: .82rem; }
.product-detail-price strong { color: var(--gold); font-size: 2rem; }
.product-detail-price small { color: var(--muted); }
.product-status-row { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; padding: 12px 0 18px; border-bottom: 1px solid var(--line); color: #b9c3d7; font-size: .74rem; }
.product-status-row .is-out { color: var(--danger); font-weight: 800; }
.product-options { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 12px; margin-top: 18px; }
.product-options label, .product-quantity-row > label { display: grid; gap: 7px; color: #cbd3e3; font-size: .75rem; font-weight: 800; }
.product-options select { min-height: 46px; padding: 0 12px; border: 1px solid var(--line); border-radius: 11px; color: #fff; background: #0b1222; }
.product-quantity-row { display: flex; justify-content: space-between; align-items: end; gap: 14px; margin-top: 16px; }
.product-quantity-row > div { display: grid; grid-template-columns: 40px 62px 40px; }
.product-quantity-row button, .product-quantity-row input { height: 42px; border: 1px solid var(--line); color: #fff; background: rgba(255,255,255,.035); text-align: center; }
.product-quantity-row button:first-child { border-radius: 10px 0 0 10px; }
.product-quantity-row button:last-child { border-radius: 0 10px 10px 0; }
.product-quantity-row input { border-left: 0; border-right: 0; }
.product-add-button { width: 100%; margin-top: 20px; }
.product-add-button:disabled { opacity: .45; cursor: not-allowed; }
.product-cart-link { display: flex; justify-content: center; margin-top: 10px; padding: 12px; border: 1px solid var(--line); border-radius: 11px; color: #d7deec; background: rgba(255,255,255,.025); font-weight: 800; }
.product-purchase-notice { display: grid; gap: 3px; margin-top: 16px; padding: 13px; border: 1px solid rgba(255,179,31,.25); border-radius: 12px; color: #f9dd9e; background: rgba(255,179,31,.055); font-size: .72rem; }
.product-purchase-notice span { color: #bcaa84; }
.product-information { display: grid; gap: 18px; margin-top: 26px; }
.product-information article { padding: 28px; }
.product-information h2 { margin: 0 0 12px; }
.product-information p { margin: 0; color: #aeb8cc; line-height: 1.75; }
.product-spec-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 1px; overflow: hidden; padding: 1px; background: var(--line); }
.product-spec-grid > div { display: grid; gap: 5px; min-height: 92px; padding: 18px; background: #0a1020; }
.product-spec-grid b { color: #fff; font-size: .72rem; }
.product-spec-grid span { color: var(--muted); font-size: .72rem; }
.legal-link-grid { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.legal-link-grid a { padding: 9px 11px; border: 1px solid var(--line); border-radius: 999px; color: #d8c9ff; font-size: .7rem; }

.legal-hero { max-width: 850px; margin: 30px auto 24px; text-align: center; }
.legal-hero h1 { margin: 7px 0 10px; font-size: clamp(2.4rem, 6vw, 5rem); }
.legal-hero p { color: var(--muted); line-height: 1.7; }
.legal-hero small { color: #7f899f; }
.legal-warning { display: flex; gap: 12px; align-items: center; max-width: 900px; margin: 0 auto 20px; padding: 14px 16px; border: 1px solid rgba(255,179,31,.36); border-radius: 13px; color: #f8d997; background: rgba(255,179,31,.06); }
.legal-warning span { color: #c0ad85; font-size: .75rem; }
.legal-grid { display: grid; gap: 14px; max-width: 1000px; margin: 0 auto; }
.legal-card { padding: 26px 28px; border: 1px solid var(--line); border-radius: 18px; background: linear-gradient(180deg, rgba(17,24,45,.94), rgba(8,13,27,.94)); }
.legal-card h2 { margin: 0 0 12px; font-size: 1.1rem; }
.legal-card p, .legal-card li, .legal-card dd { color: #aeb8cc; line-height: 1.72; }
.legal-card ul { margin: 0; padding-left: 20px; }
.legal-data-list { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 10px; margin: 0; }
.legal-data-list > div { padding: 12px; border: 1px solid var(--line); border-radius: 11px; background: rgba(255,255,255,.018); }
.legal-data-list dt { color: #8994a9; font-size: .65rem; text-transform: uppercase; letter-spacing: .08em; }
.legal-data-list dd { margin: 4px 0 0; color: #e4e9f3; }
.legal-data-list a, .legal-card a { color: #bfa9ff; }
.contact-cards { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 10px; }
.contact-cards a { min-height: 58px; display: grid; place-items: center; padding: 12px; border: 1px solid rgba(152,92,255,.34); border-radius: 12px; background: rgba(152,92,255,.055); font-weight: 800; }

@media (max-width: 900px) {
  .product-detail-grid { grid-template-columns: 1fr; }
  .product-purchase-panel { position: static; }
  .product-main-image { min-height: 380px; }
  .product-spec-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
}
@media (max-width: 560px) {
  .product-detail-shell, .legal-shell { width: min(100% - 22px, 1260px); }
  .product-gallery-panel, .product-purchase-panel, .product-information article { padding: 18px; }
  .product-main-image { min-height: 300px; }
  .product-options, .product-spec-grid, .legal-data-list, .contact-cards { grid-template-columns: 1fr; }
  .product-status-row { flex-direction: column; }
  .legal-card { padding: 21px 18px; }
  .legal-warning { align-items: flex-start; flex-direction: column; }
}
.product-actions a.details-button { min-height: 42px; border: 1px solid var(--line); border-radius: 10px; }
.product-price-row strong del { display: block; margin-bottom: 2px; color: #7f899f; font-size: .68rem; font-weight: 600; }


/* V83.7.5 — checkout, endereço e frete */
.checkout-page-body { min-height: 100vh; background: radial-gradient(circle at 15% 0%, rgba(152,92,255,.10), transparent 34%), #060a14; }
.checkout-shell { width: min(100% - 36px, 1260px); margin: 0 auto; padding: 30px 0 72px; }
.checkout-hero { max-width: 820px; margin: 12px 0 26px; }
.checkout-hero h1 { margin: 6px 0 8px; font-size: clamp(2.4rem, 6vw, 5rem); line-height: 1; }
.checkout-hero p { margin: 0; color: var(--muted); line-height: 1.65; }
.checkout-login-gate, .checkout-card, .checkout-summary-card { border: 1px solid var(--line); border-radius: 20px; background: linear-gradient(180deg, rgba(17,24,45,.97), rgba(8,13,27,.97)); box-shadow: var(--shadow); }
.checkout-login-gate { display: flex; justify-content: space-between; align-items: center; gap: 20px; padding: 20px 24px; margin-bottom: 20px; }
.checkout-login-gate > div { display: flex; align-items: center; gap: 14px; }
.checkout-login-gate h2, .checkout-card h2, .checkout-summary-card h2 { margin: 0; }
.checkout-login-gate p, .checkout-card-head p { margin: 4px 0 0; color: var(--muted); font-size: .76rem; }
.checkout-login-gate small { color: #9eabc1; }
.checkout-login-gate.is-authenticated { border-color: rgba(50,216,149,.28); }
.checkout-step-number { flex: 0 0 38px; width: 38px; height: 38px; display: grid; place-items: center; border: 1px solid rgba(152,92,255,.4); border-radius: 50%; color: #d9cdff; background: rgba(152,92,255,.10); font-weight: 900; }
.checkout-layout { display: grid; grid-template-columns: minmax(0, 1fr) 360px; gap: 22px; align-items: start; }
.checkout-layout.is-locked { opacity: .45; pointer-events: none; user-select: none; }
.checkout-main-column { display: grid; gap: 18px; }
.checkout-card { padding: 24px; }
.checkout-card-head { display: flex; align-items: center; gap: 13px; margin-bottom: 20px; }
.checkout-items { display: grid; gap: 10px; }
.checkout-item { display: grid; grid-template-columns: 76px minmax(0,1fr); gap: 14px; align-items: center; padding: 12px; border: 1px solid var(--line); border-radius: 14px; background: rgba(255,255,255,.02); }
.checkout-item img { width: 76px; height: 76px; object-fit: contain; border-radius: 10px; background: rgba(255,255,255,.025); }
.checkout-item div { display: grid; gap: 4px; }
.checkout-item h3 { margin: 0; font-size: .92rem; }
.checkout-item small { color: var(--muted); }
.checkout-item strong { color: var(--gold); }
.checkout-stock-error { color: var(--danger) !important; font-weight: 800; }
.checkout-empty { text-align: center; padding: 30px; color: var(--muted); }
.checkout-empty > span { font-size: 2.3rem; }
.checkout-address-form { display: grid; gap: 13px; }
.checkout-address-form label { display: grid; gap: 7px; color: #cbd3e3; font-size: .74rem; font-weight: 800; }
.checkout-address-form input { min-height: 46px; width: 100%; padding: 0 12px; border: 1px solid var(--line); border-radius: 11px; color: #fff; background: #0b1222; }
.checkout-address-form input:focus { outline: 2px solid rgba(152,92,255,.35); border-color: var(--purple); }
.checkout-two-col, .checkout-three-col { display: grid; gap: 12px; }
.checkout-two-col { grid-template-columns: repeat(2,minmax(0,1fr)); }
.checkout-three-col { grid-template-columns: 1.1fr .35fr 1fr; }
.checkout-cep-row { display: grid; grid-template-columns: minmax(150px,.4fr) auto minmax(160px,1fr); gap: 10px; align-items: end; }
.checkout-cep-row button { min-height: 46px; padding: 0 16px; border: 1px solid rgba(152,92,255,.38); border-radius: 11px; color: #fff; background: rgba(152,92,255,.10); cursor: pointer; font-weight: 800; }
.checkout-cep-row small { min-height: 46px; display: flex; align-items: center; color: #9eabc1; }
.checkout-form-actions { display: flex; align-items: center; gap: 14px; margin-top: 4px; }
.checkout-form-actions span { color: #76dab0; font-size: .74rem; }
.checkout-shipping-options { display: grid; gap: 10px; }
.checkout-shipping-option { display: grid; grid-template-columns: auto minmax(0,1fr) auto; gap: 12px; align-items: center; padding: 16px; border: 1px solid var(--line); border-radius: 13px; background: rgba(255,255,255,.02); cursor: pointer; }
.checkout-shipping-option.active { border-color: var(--purple); box-shadow: 0 0 0 2px rgba(152,92,255,.10); }
.checkout-shipping-option span { display: grid; gap: 3px; }
.checkout-shipping-option small, .checkout-muted { color: var(--muted); }
.checkout-shipping-option strong { color: var(--gold); }
.checkout-terms-card { display: grid; gap: 12px; }
.checkout-terms-card .checkout-card-head { margin-bottom: 6px; }
.checkout-terms-card > label { display: flex; align-items: flex-start; gap: 10px; color: #bac4d6; line-height: 1.5; }
.checkout-terms-card a { color: #c4adff; }
.checkout-summary-card { position: sticky; top: 118px; padding: 24px; }
.checkout-summary-lines { display: grid; gap: 12px; margin: 20px 0; }
.checkout-summary-lines > div { display: flex; justify-content: space-between; gap: 14px; color: #aeb8cc; }
.checkout-summary-lines strong { color: #fff; }
.checkout-summary-lines .checkout-total { padding-top: 15px; border-top: 1px solid var(--line); font-size: 1.12rem; }
.checkout-summary-lines .checkout-total strong { color: var(--gold); font-size: 1.35rem; }
.checkout-delivery-summary { min-height: 84px; padding: 13px; margin-bottom: 15px; border: 1px solid var(--line); border-radius: 12px; color: #9ea9bd; background: rgba(255,255,255,.018); line-height: 1.55; font-size: .75rem; }
.checkout-summary-card .primary-cta { width: 100%; }
.checkout-summary-card .primary-cta:disabled { opacity: .4; cursor: not-allowed; }
.checkout-summary-card > small { display: block; margin-top: 11px; color: #7e899e; line-height: 1.5; }
@media (max-width: 940px) { .checkout-layout { grid-template-columns: 1fr; } .checkout-summary-card { position: static; order: -1; } }
@media (max-width: 650px) { .checkout-shell { width: min(100% - 22px, 1260px); } .checkout-login-gate { align-items: stretch; flex-direction: column; } .checkout-two-col, .checkout-three-col, .checkout-cep-row { grid-template-columns: 1fr; } .checkout-cep-row small { min-height: auto; } .checkout-card { padding: 18px; } .checkout-item { grid-template-columns: 62px minmax(0,1fr); } .checkout-item img { width: 62px; height: 62px; } }
