/* Pull-City — sections */

/* MANIFESTO */
.manifesto { display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(40px, 6vw, 100px); align-items: flex-start; }
.manifesto .big { font-family: var(--serif); font-size: clamp(28px, 3.4vw, 50px); line-height: 1.15; font-weight: 360; letter-spacing: -0.018em; }
.manifesto .big em { font-style: italic; color: var(--accent); }
.manifesto .small { color: var(--ink-2); font-size: 15px; }
.manifesto .small p + p { margin-top: 18px; }
.manifesto .ledger { margin-top: 36px; padding-top: 28px; border-top: 1px solid var(--line); display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.manifesto .ledger .k { font-family: var(--serif); font-size: 34px; color: var(--accent); line-height: 1; }
.manifesto .ledger .l { font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--mute); margin-top: 8px; }
@media (max-width: 880px) { .manifesto { grid-template-columns: 1fr; } }

/* DROPS */
.drops { display: grid; grid-template-columns: repeat(12, 1fr); gap: 24px; }
.drop { grid-column: span 4; }
.drop:nth-child(1), .drop:nth-child(2) { grid-column: span 6; }
@media (max-width: 980px) { .drop, .drop:nth-child(1), .drop:nth-child(2) { grid-column: span 6; } }
@media (max-width: 640px)  { .drop, .drop:nth-child(1), .drop:nth-child(2) { grid-column: span 12; } }

/* Product card */
.pcard { position: relative; display: block; cursor: pointer; }
.pcard .frame { position: relative; aspect-ratio: 4 / 5; border: 1px solid var(--line); background:
  radial-gradient(80% 60% at 50% 20%, color-mix(in srgb, var(--accent) 6%, transparent), transparent 70%),
  linear-gradient(180deg, var(--surface), var(--bg-2));
  border-radius: 12px; overflow: hidden; display: grid; place-items: center; transition: border-color .35s; perspective: 1000px; }
.pcard .frame::after { content: ""; position: absolute; inset: 0; pointer-events: none; background: radial-gradient(40% 35% at var(--mx, 50%) var(--my, 50%), rgba(255,210,140,.18), transparent 60%); opacity: 0; transition: opacity .3s; }
.pcard:hover .frame { border-color: var(--line-2); }
.pcard:hover .frame::after { opacity: 1; }
.pcard .tilt { width: 56%; transform: rotate(var(--rot, -2deg)) translateZ(0); transition: transform .6s cubic-bezier(.2,.7,.2,1); will-change: transform; }
.pcard:hover .tilt { transform: rotate(0deg) scale(1.06) translateY(-2%); }
.pcard .meta { display: grid; grid-template-columns: 1fr auto; gap: 4px 20px; align-items: baseline; margin-top: 20px; }
.pcard .meta .nm { font-family: var(--serif); font-size: 20px; letter-spacing: -0.01em; }
.pcard .meta .pr { font-family: var(--serif); font-size: 19px; color: var(--accent); white-space: nowrap; font-variant-numeric: tabular-nums; }
.pcard .meta .sub { font: 500 10.5px var(--mono); letter-spacing: .14em; color: var(--ink-2); grid-column: 1 / -1; margin-top: 2px; }
.pcard .badges { position: absolute; top: 14px; left: 14px; right: 14px; display: flex; gap: 6px; flex-wrap: wrap; z-index: 2; }
.pcard .badge { font: 500 9px var(--mono); letter-spacing: .16em; padding: 5px 9px; border-radius: 999px; background: color-mix(in srgb, var(--bg) 80%, transparent); border: 1px solid var(--line-2); color: var(--ink-2); -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px); }
.pcard .badge.gold { background: linear-gradient(180deg, var(--accent-2), var(--accent)); color: var(--ink-on-accent); border-color: transparent; }
.pcard .badge.dark { background: var(--bg); color: var(--ink); }
.pcard .quick { position: absolute; bottom: 14px; right: 14px; left: 14px; opacity: 0; transform: translateY(8px); transition: opacity .3s, transform .3s; display: flex; gap: 8px; justify-content: flex-end; z-index: 2; }
.pcard:hover .quick { opacity: 1; transform: none; }
.pcard .pill { font: 500 10px var(--mono); letter-spacing: .14em; padding: 8px 12px; border-radius: 999px; background: var(--bg); border: 1px solid var(--line-2); color: var(--ink); transition: all .2s; }
.pcard .pill:hover { background: var(--ink); color: var(--bg); border-color: var(--ink); }
.pcard .pill.gold:hover { background: var(--accent); color: var(--ink-on-accent); border-color: var(--accent); }

/* Featured (large) drop card */
.pcard.big .frame { aspect-ratio: 16 / 11; }
.pcard.big .tilt { width: 28%; }
.pcard.big .meta .nm { font-size: 26px; }

/* UNIVERSES */
.universes { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.uni { position: relative; border: 1px solid var(--line); border-radius: 18px; overflow: hidden; background:
  radial-gradient(60% 60% at 100% 0%, color-mix(in srgb, var(--accent) 8%, transparent), transparent 60%),
  var(--surface);
  padding: 44px; min-height: 480px; display: flex; flex-direction: column; justify-content: space-between; gap: 24px; transition: border-color .3s; }
.uni:hover { border-color: var(--line-2); }
.uni .label { display: flex; align-items: center; justify-content: space-between; }
.uni .head h3 { font-size: 40px; margin-top: 14px; }
.uni .head h3 em { font-style: italic; color: var(--accent); }
.uni .head p { color: var(--ink-2); margin-top: 14px; max-width: 38ch; font-size: 15px; }
.uni .preview { position: absolute; right: -20px; top: 60px; bottom: 70px; width: 42%; display: flex; align-items: center; justify-content: center; perspective: 1200px; pointer-events: none; }
.uni .preview .stack { position: relative; width: 80%; height: 100%; }
.uni .preview .stack > div { position: absolute; left: 50%; top: 50%; width: 70%; aspect-ratio: 63/88; transition: transform .8s cubic-bezier(.2,.7,.2,1); }
.uni .preview .stack > div:nth-child(1) { transform: translate(-90%, -50%) rotate(-14deg); }
.uni .preview .stack > div:nth-child(2) { transform: translate(-50%, -55%) rotate(0deg) scale(1.08); z-index: 2; }
.uni .preview .stack > div:nth-child(3) { transform: translate(-10%, -50%) rotate(14deg); }
.uni:hover .preview .stack > div:nth-child(1) { transform: translate(-100%, -50%) rotate(-18deg); }
.uni:hover .preview .stack > div:nth-child(2) { transform: translate(-50%, -62%) rotate(0deg) scale(1.12); }
.uni:hover .preview .stack > div:nth-child(3) { transform: translate(0%, -50%) rotate(18deg); }
.uni .foot { display: flex; align-items: center; justify-content: space-between; gap: 16px; z-index: 2; position: relative; }
.uni .stats { display: flex; gap: 32px; }
.uni .stats > div b { display: block; color: var(--accent); font-family: var(--serif); font-size: 22px; font-weight: 400; }
.uni .stats > div span { font: 500 9.5px var(--mono); letter-spacing: .18em; color: var(--mute); text-transform: uppercase; margin-top: 4px; display: block; }

@media (max-width: 980px) { .universes { grid-template-columns: 1fr; } .uni { min-height: 380px; } .uni .preview { display: none; } }

/* SLABS */
.slabs { display: grid; grid-template-columns: 1.3fr 1fr; gap: 24px; }
.slabs .stage { position: relative; border: 1px solid var(--line); border-radius: 18px; background:
  radial-gradient(70% 60% at 50% 30%, color-mix(in srgb, var(--accent) 10%, transparent), transparent 70%),
  linear-gradient(180deg, var(--surface), var(--bg-2));
  min-height: 560px; padding: 40px; display: grid; place-items: center; overflow: hidden;
}
.slabs .stage .shelf { position: absolute; left: 10%; right: 10%; bottom: 36%; height: 1px; background: linear-gradient(90deg, transparent, var(--line-2), transparent); }
.slabs .stage .stagelights { position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(30% 30% at 30% 60%, rgba(255,210,140,.18), transparent 60%),
    radial-gradient(30% 30% at 70% 60%, rgba(160,180,255,.10), transparent 60%);
}
.slabs .stage .slab-trio { display: flex; gap: 26px; align-items: center; position: relative; z-index: 1; }
.slabs .stage .slab-trio > div { width: 130px; transition: transform .6s cubic-bezier(.2,.7,.2,1); }
.slabs .stage .slab-trio > div:nth-child(1) { transform: rotate(-8deg) translateY(28px); }
.slabs .stage .slab-trio > div:nth-child(2) { transform: rotate(0deg) translateY(-10px) scale(1.1); z-index: 2; }
.slabs .stage .slab-trio > div:nth-child(3) { transform: rotate(8deg) translateY(28px); }
.slabs .stage:hover .slab-trio > div:nth-child(1) { transform: rotate(-11deg) translateY(10px); }
.slabs .stage:hover .slab-trio > div:nth-child(2) { transform: rotate(0deg) translateY(-22px) scale(1.13); }
.slabs .stage:hover .slab-trio > div:nth-child(3) { transform: rotate(11deg) translateY(10px); }

.slabs .copy { display: flex; flex-direction: column; gap: 22px; }
.slabs .copy h2 { font-size: clamp(32px, 3.6vw, 54px); }
.slabs .copy h2 em { font-style: italic; color: var(--accent); }
.slabs .copy > p { color: var(--ink-2); max-width: 44ch; font-size: 15px; }
.slabs .copy .list { display: flex; flex-direction: column; margin-top: 4px; }
.slabs .copy .list .item { display: grid; grid-template-columns: auto 1fr auto; gap: 18px; align-items: center; padding: 20px 0; border-top: 1px solid var(--line); cursor: pointer; transition: padding .25s; }
.slabs .copy .list .item:last-child { border-bottom: 1px solid var(--line); }
.slabs .copy .list .item:hover { padding-left: 6px; padding-right: 6px; }
.slabs .copy .list .item .g { width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--accent); display: grid; place-items: center; font: 600 11px var(--mono); color: var(--accent); letter-spacing: .05em; }
.slabs .copy .list .item .name { font-family: var(--serif); font-size: 17px; line-height: 1.2; }
.slabs .copy .list .item .meta { font: 500 10px var(--mono); letter-spacing: .14em; color: var(--mute); margin-top: 4px; }
.slabs .copy .list .item .price { font-family: var(--serif); font-size: 18px; color: var(--accent); font-variant-numeric: tabular-nums; }

@media (max-width: 1000px) { .slabs { grid-template-columns: 1fr; } .slabs .stage { min-height: 420px; } }

/* PSA-style slab visual */
.slab { position: relative; width: 100%; aspect-ratio: 63 / 105; border-radius: 8px;
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.02));
  border: 1px solid rgba(255,255,255,.15);
  box-shadow: 0 30px 60px -10px rgba(0,0,0,.55), 0 0 0 1px rgba(0,0,0,.5) inset;
  overflow: hidden;
}
.slab::before { content: ""; position: absolute; inset: 0; background: linear-gradient(115deg, transparent 30%, rgba(255,255,255,.18) 50%, transparent 70%); pointer-events: none; }
.slab-header { position: absolute; left: 0; right: 0; top: 0; padding: 10px 12px; background: linear-gradient(180deg, #0e0e12, #050507); border-bottom: 1px solid rgba(255,255,255,.08); display: flex; align-items: center; justify-content: space-between; }
.slab-header .grader { font-family: var(--serif); font-style: italic; font-size: 13px; color: var(--accent); letter-spacing: .02em; }
.slab-header .grade  { font: 700 13px var(--mono); color: var(--ink); letter-spacing: .12em; }
.slab-body { position: absolute; left: 10px; right: 10px; top: 52px; bottom: 36px; }
.slab-footer { position: absolute; left: 0; right: 0; bottom: 0; padding: 8px 12px; font: 500 8.5px var(--mono); letter-spacing: .18em; color: rgba(255,255,255,.5); border-top: 1px solid rgba(255,255,255,.08); display: flex; justify-content: space-between; background: linear-gradient(180deg, transparent, rgba(0,0,0,.4)); }

/* SEALED / BOOSTERS */
.boosters { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.booster { border: 1px solid var(--line); background: var(--surface); border-radius: 14px; padding: 22px; display: flex; flex-direction: column; gap: 16px; transition: transform .35s, border-color .3s; cursor: pointer; }
.booster:hover { transform: translateY(-4px); border-color: var(--line-2); }
.booster .imgwrap { aspect-ratio: 4/5; border-radius: 8px; background:
  radial-gradient(60% 50% at 50% 100%, color-mix(in srgb, var(--accent) 8%, transparent), transparent 60%),
  linear-gradient(160deg, var(--bg-2), var(--bg));
  border: 1px solid var(--line); display: grid; place-items: center; overflow: hidden; position: relative; }
.booster .imgwrap::after { content: ""; position: absolute; left: 10%; right: 10%; bottom: -10%; height: 30px; background: radial-gradient(50% 100% at 50% 0, rgba(0,0,0,.5), transparent 70%); filter: blur(8px); }
.booster .box { width: 56%; aspect-ratio: 3/4.2; border-radius: 4px; position: relative; overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255,255,255,.08), transparent 25%),
    linear-gradient(160deg, #2a1a08, #4a2f12 50%, #150a05);
  box-shadow: 0 30px 60px -20px rgba(0,0,0,.7), inset 0 0 0 1px rgba(232,212,168,.22);
  transform: rotate(-2deg);
  transition: transform .4s;
}
.booster:hover .box { transform: rotate(0) translateY(-4px); }
.booster .box::after { content: ""; position: absolute; inset: 14% 10%; border: 1px solid rgba(232,212,168,.3); border-radius: 2px; background: radial-gradient(70% 60% at 50% 40%, rgba(255,210,140,.28), transparent 70%); }
.booster .box .lbl { position: absolute; top: 8%; left: 0; right: 0; text-align: center; font-family: var(--serif); font-style: italic; font-size: 11px; color: rgba(255,210,140,.6); letter-spacing: .05em; z-index: 2; }
.booster.alt .box { background: linear-gradient(180deg, rgba(255,255,255,.08), transparent 25%), linear-gradient(160deg, #0e1424, #1d2c4b 50%, #060a14); }
.booster.alt .box::after { border-color: rgba(180,200,255,.36); background: radial-gradient(70% 60% at 50% 40%, rgba(160,180,255,.3), transparent 70%); }
.booster.alt .box .lbl { color: rgba(180,200,255,.7); }
.booster.alt2 .box { background: linear-gradient(180deg, rgba(255,255,255,.08), transparent 25%), linear-gradient(160deg, #200608, #4a0e16 50%, #0d0405); }
.booster.alt2 .box::after { border-color: rgba(255,180,180,.36); background: radial-gradient(70% 60% at 50% 40%, rgba(255,160,160,.28), transparent 70%); }
.booster.alt2 .box .lbl { color: rgba(255,180,180,.7); }
.booster.alt3 .box { background: linear-gradient(180deg, rgba(255,255,255,.08), transparent 25%), linear-gradient(160deg, #0a1f14, #0f3a26 50%, #04130a); }
.booster.alt3 .box::after { border-color: rgba(160,255,200,.36); background: radial-gradient(70% 60% at 50% 40%, rgba(140,230,180,.28), transparent 70%); }
.booster.alt3 .box .lbl { color: rgba(160,255,200,.7); }
/* Pokémon TCG warm sun */
.booster.alt4 .box { background: linear-gradient(180deg, rgba(255,255,255,.08), transparent 25%), linear-gradient(160deg, #2a1a05, #4d2f10 50%, #150a05); }
.booster.alt4 .box::after { border-color: rgba(255,210,140,.4); background: radial-gradient(70% 60% at 50% 40%, rgba(255,200,120,.3), transparent 70%); }
.booster.alt4 .box .lbl { color: rgba(255,220,160,.78); }
/* Pokémon purple */
.booster.alt5 .box { background: linear-gradient(180deg, rgba(255,255,255,.08), transparent 25%), linear-gradient(160deg, #190a2c, #38205a 50%, #0a0414); }
.booster.alt5 .box::after { border-color: rgba(200,170,255,.36); background: radial-gradient(70% 60% at 50% 40%, rgba(180,150,255,.3), transparent 70%); }
.booster.alt5 .box .lbl { color: rgba(220,200,255,.78); }
/* Pokémon misty / silver-blue */
.booster.alt6 .box { background: linear-gradient(180deg, rgba(255,255,255,.08), transparent 25%), linear-gradient(160deg, #0a1422, #20364d 50%, #050a13); }
.booster.alt6 .box::after { border-color: rgba(180,220,255,.36); background: radial-gradient(70% 60% at 50% 40%, rgba(160,210,255,.28), transparent 70%); }
.booster.alt6 .box .lbl { color: rgba(200,225,255,.78); }

/* Generic box-art variants — for BoosterBox used outside .booster cards (cart, quickview, headers) */
.box.alt { background: linear-gradient(180deg, rgba(255,255,255,.08), transparent 25%), linear-gradient(160deg, #0e1424, #1d2c4b 50%, #060a14); }
.box.alt::after { border-color: rgba(180,200,255,.36); background: radial-gradient(70% 60% at 50% 40%, rgba(160,180,255,.3), transparent 70%); }
.box.alt .lbl { color: rgba(180,200,255,.78); }
.box.alt2 { background: linear-gradient(180deg, rgba(255,255,255,.08), transparent 25%), linear-gradient(160deg, #200608, #4a0e16 50%, #0d0405); }
.box.alt2::after { border-color: rgba(255,180,180,.36); background: radial-gradient(70% 60% at 50% 40%, rgba(255,160,160,.28), transparent 70%); }
.box.alt2 .lbl { color: rgba(255,190,190,.78); }
.box.alt3 { background: linear-gradient(180deg, rgba(255,255,255,.08), transparent 25%), linear-gradient(160deg, #0a1f14, #0f3a26 50%, #04130a); }
.box.alt3::after { border-color: rgba(160,255,200,.36); background: radial-gradient(70% 60% at 50% 40%, rgba(140,230,180,.28), transparent 70%); }
.box.alt3 .lbl { color: rgba(170,255,205,.78); }
.box.alt4 { background: linear-gradient(180deg, rgba(255,255,255,.08), transparent 25%), linear-gradient(160deg, #2a1a05, #4d2f10 50%, #150a05); }
.box.alt4::after { border-color: rgba(255,210,140,.4); background: radial-gradient(70% 60% at 50% 40%, rgba(255,200,120,.3), transparent 70%); }
.box.alt4 .lbl { color: rgba(255,220,160,.78); }
.box.alt5 { background: linear-gradient(180deg, rgba(255,255,255,.08), transparent 25%), linear-gradient(160deg, #190a2c, #38205a 50%, #0a0414); }
.box.alt5::after { border-color: rgba(200,170,255,.36); background: radial-gradient(70% 60% at 50% 40%, rgba(180,150,255,.3), transparent 70%); }
.box.alt5 .lbl { color: rgba(220,200,255,.78); }
.box.alt6 { background: linear-gradient(180deg, rgba(255,255,255,.08), transparent 25%), linear-gradient(160deg, #0a1422, #20364d 50%, #050a13); }
.box.alt6::after { border-color: rgba(180,220,255,.36); background: radial-gradient(70% 60% at 50% 40%, rgba(160,210,255,.28), transparent 70%); }
.box.alt6 .lbl { color: rgba(200,225,255,.78); }

.booster .info { display: flex; justify-content: space-between; align-items: baseline; gap: 10px; }
.booster .nm { font-family: var(--serif); font-size: 18px; letter-spacing: -.01em; }
.booster .pr { color: var(--accent); font-family: var(--serif); font-size: 18px; }
.booster .sub { font: 500 10px var(--mono); letter-spacing: .16em; color: var(--mute); }
@media (max-width: 980px) { .boosters { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .boosters { grid-template-columns: 1fr; } }

/* SEALED UNIVERSE SECTION — header with tabs + product grid */
.univ-section { position: relative; }
.univ-section + .univ-section { border-top: 1px solid var(--line); }

.univ-head { display: grid; grid-template-columns: 1fr auto; gap: 32px; align-items: end; margin-bottom: 40px; }
.univ-head .titles .eyebrow { color: var(--accent); }
.univ-head .titles h2 { font-size: clamp(48px, 6.4vw, 92px); margin-top: 14px; line-height: .98; }
.univ-head .titles h2 em { font-style: italic; color: var(--accent); }
.univ-head .titles p { color: var(--ink-2); max-width: 52ch; margin-top: 18px; font-size: 15.5px; }
.univ-head .universe-mark { display: flex; flex-direction: column; align-items: flex-end; gap: 14px; }
.univ-head .universe-mark .num { font-family: var(--serif); font-size: 16px; color: var(--mute); }
.univ-head .universe-mark .ico {
  width: 86px; height: 86px; border-radius: 18px; overflow: hidden;
  border: 1px solid var(--line-2);
  background: linear-gradient(180deg, var(--surface), var(--bg-2));
}
.univ-head .universe-mark .ico img { width: 100%; height: 100%; object-fit: cover; opacity: .92; }

.univ-tabs { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding-bottom: 22px; border-bottom: 1px solid var(--line); margin-bottom: 32px; flex-wrap: wrap; }
.univ-tabs .tabset { display: flex; gap: 4px; padding: 4px; border-radius: 999px; border: 1px solid var(--line-2); background: color-mix(in srgb, var(--surface) 60%, transparent); }
.univ-tabs .tab { font: 500 11px var(--mono); letter-spacing: .14em; padding: 10px 18px; border-radius: 999px; color: var(--ink-2); cursor: pointer; transition: all .2s; display: inline-flex; align-items: center; gap: 8px; }
.univ-tabs .tab .count { font-family: var(--mono); font-size: 10px; padding: 2px 7px; border-radius: 999px; background: color-mix(in srgb, var(--ink) 14%, transparent); color: var(--ink-2); }
.univ-tabs .tab:hover { color: var(--ink); }
.univ-tabs .tab.active { background: var(--ink); color: var(--bg); }
.univ-tabs .tab.active .count { background: color-mix(in srgb, var(--bg) 40%, transparent); color: var(--bg); }
.univ-tabs .meta { font: 500 10.5px var(--mono); letter-spacing: .16em; color: var(--mute); }

.univ-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
@media (max-width: 1100px) { .univ-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 820px)  { .univ-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; } }
@media (max-width: 520px)  { .univ-grid { grid-template-columns: 1fr; } }

/* Mobile: sezioni più compatte + immagini prodotto più piccole */
@media (max-width: 640px) {
  .section { padding: clamp(46px, 12vw, 84px) 0; }
  .manifesto .ledger { grid-template-columns: 1fr 1fr; gap: 16px; }
}
/* Mobile: griglia prodotti a 2 colonne, card e immagini molto più compatte */
@media (max-width: 520px) {
  .univ-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .sealed-card { min-height: 0; padding: 11px; gap: 9px; border-radius: 12px; }
  .sealed-card .imgwrap { aspect-ratio: 1 / 1; border-radius: 8px; }
  .sealed-card .box-tilt { width: 82%; }
  .sealed-card .info { gap: 6px; }
  .sealed-card .info .row1 .nm { font-size: 12.5px; line-height: 1.2; }
  .sealed-card .info .row1 .pr { font-size: 12.5px; }
  .sealed-card .info .sub { font-size: 10.5px; }
  .sealed-card .info .release { font-size: 10px; }
  .sealed-card .corner { top: 9px; left: 9px; right: 9px; }
  .sealed-card .pill-status { font-size: 8px; padding: 5px 8px; letter-spacing: .1em; }
  .sealed-card .pill-stock { display: none; }
  .sealed-card .cta-row { flex-wrap: wrap; gap: 6px; }
  .sealed-card .cta-row .btn-sm { font-size: 9.5px; padding: 9px 6px; letter-spacing: .08em; }
}
@media (max-width: 360px) {
  .sealed-card .box-tilt { width: 90%; }
  .sealed-card .cta-row .btn-sm.ghost { flex: 0 0 auto; }
}

@media (max-width: 760px) {
  .univ-head { grid-template-columns: 1fr; gap: 18px; }
  .univ-head .universe-mark { flex-direction: row; align-items: center; justify-content: flex-start; }
}

/* SEALED CARD (more detailed than the legacy .booster) */
.sealed-card { position: relative; display: flex; flex-direction: column; gap: 18px; border: 1px solid var(--line); background: var(--surface); border-radius: 14px; padding: 22px; transition: transform .35s, border-color .3s, box-shadow .3s; cursor: pointer; overflow: hidden; height: 100%; min-height: 480px; }
.univ-grid { align-items: stretch; }
.univ-grid-item { display: flex; }
.univ-grid-item > .sealed-card { width: 100%; }
.sealed-card::before { content: ""; position: absolute; inset: 0; pointer-events: none; opacity: 0; transition: opacity .3s;
  background: radial-gradient(360px 280px at var(--mx, 50%) var(--my, 30%), color-mix(in srgb, var(--accent) 12%, transparent), transparent 70%);
}
.sealed-card:hover { transform: translateY(-4px); border-color: var(--line-2); box-shadow: 0 30px 60px -30px color-mix(in srgb, var(--accent) 30%, transparent); }
.sealed-card:hover::before { opacity: 1; }
.sealed-card .imgwrap { aspect-ratio: 1/1; border-radius: 10px; background:
  radial-gradient(60% 50% at 50% 100%, color-mix(in srgb, var(--accent) 10%, transparent), transparent 60%),
  linear-gradient(160deg, var(--bg-2), var(--bg));
  border: 1px solid var(--line); display: grid; place-items: center; overflow: hidden; position: relative; perspective: 1200px; }
.sealed-card .imgwrap::after { content: ""; position: absolute; left: 8%; right: 8%; bottom: -10%; height: 30px; background: radial-gradient(50% 100% at 50% 0, rgba(0,0,0,.55), transparent 70%); filter: blur(8px); }
.sealed-card .box-tilt { width: 78%; transform-style: preserve-3d; transition: transform .35s cubic-bezier(.2,.7,.2,1); will-change: transform; display: flex; align-items: center; justify-content: center; }
.sealed-card .box {
  width: 100%;
  aspect-ratio: 3 / 4.2;
  border-radius: 6px;
  position: relative;
  overflow: hidden;
  box-shadow:
    0 30px 60px -20px rgba(0,0,0,.7),
    inset 0 0 0 1px rgba(255,255,255,.08);
}

/* Default warm-gold box */
.box {
  background:
    linear-gradient(180deg, rgba(255,255,255,.08), transparent 30%),
    linear-gradient(160deg, #2a1a08 0%, #4a2f12 50%, #150a05 100%);
}

/* Box layered face — bands + art window + name */
.box-shine {
  position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(115deg, transparent 30%, rgba(255,255,255,.16) 50%, transparent 70%);
  mix-blend-mode: screen;
  transform: translateX(-100%);
  animation: boxshine 6s ease-in-out infinite;
}
@keyframes boxshine {
  0%, 30% { transform: translateX(-100%); }
  60%, 100% { transform: translateX(100%); }
}

.box-band {
  position: absolute; left: 0; right: 0;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 6% 8%;
  font: 600 6.5px var(--mono, monospace); letter-spacing: .22em; text-transform: uppercase;
  color: rgba(255,210,140,.78);
  background:
    linear-gradient(180deg, rgba(0,0,0,.4), rgba(0,0,0,.1));
  border-bottom: 1px solid rgba(255,210,140,.18);
  z-index: 2;
}
.box-band.top { top: 0; }
.box-band.bot { bottom: 0; border-top: 1px solid rgba(255,210,140,.18); border-bottom: 0;
  background: linear-gradient(0deg, rgba(0,0,0,.5), rgba(0,0,0,.05));
  font-size: 5.5px; letter-spacing: .18em;
}
.box-band.bot .box-mark { color: rgba(255,210,140,.9); opacity: .7; }

.box-window {
  position: absolute; left: 8%; right: 8%; top: 16%; bottom: 28%;
  border-radius: 3px;
  border: 1px solid rgba(255,210,140,.32);
  overflow: hidden;
  background: rgba(0,0,0,.25);
}
.box-art-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(60% 70% at 50% 35%, rgba(255,200,120,.4), transparent 65%),
    radial-gradient(40% 50% at 25% 80%, rgba(120,80,200,.35), transparent 70%),
    radial-gradient(40% 50% at 80% 75%, rgba(255,120,180,.32), transparent 70%);
}
.box-art-rays {
  position: absolute; inset: 0;
  background:
    repeating-conic-gradient(from 0deg at 50% 60%, rgba(255,255,255,.06) 0deg 3deg, transparent 3deg 8deg);
  mix-blend-mode: screen;
  opacity: .7;
}
.box-glyph {
  position: absolute; left: 50%; top: 48%; transform: translate(-50%, -50%);
  font-family: var(--serif); font-style: italic;
  font-size: 32%;
  color: rgba(255,230,180,.85);
  text-shadow:
    0 0 18px rgba(255,210,140,.6),
    0 0 4px rgba(255,255,255,.4);
  line-height: 1;
}

.box-name {
  position: absolute; left: 8%; right: 8%; bottom: 14%;
  display: flex; flex-direction: column; align-items: center; text-align: center;
  z-index: 2;
}
.box-name .box-name-1 {
  font-family: var(--serif); font-style: italic;
  font-size: 7.5%; font-weight: 380;
  color: rgba(255,230,190,.95);
  letter-spacing: -.005em;
  line-height: 1.05;
  text-shadow: 0 1px 6px rgba(0,0,0,.5);
  max-width: 92%;
}

.box-edge {
  position: absolute; right: 0; top: 0; bottom: 0; width: 6%;
  background: linear-gradient(90deg, transparent, rgba(0,0,0,.45));
  pointer-events: none;
}


/* Electric category title — Orbitron + lightning sweep INSIDE letters (no extra space) */
.electric-title {
  display: inline-block;
  margin: 0;
  font-family: "Orbitron", "Inter", sans-serif;
  font-weight: 700;
  font-size: clamp(34px, 4.6vw, 60px);
  line-height: 1.1;
  letter-spacing: 0.045em;
  text-transform: uppercase;
  background:
    linear-gradient(95deg,
      var(--accent) 0%,
      var(--accent) 38%,
      #ffffff 46%,
      var(--accent-bolt, #b15bff) 50%,
      #ffffff 54%,
      var(--accent) 62%,
      var(--accent) 100%);
  background-size: 280% 100%;
  background-position: 100% 50%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow:
    0 0 22px color-mix(in srgb, var(--accent) 30%, transparent),
    0 0 48px color-mix(in srgb, var(--accent-bolt, #b15bff) 18%, transparent);
  animation: lightningTrace 3.6s cubic-bezier(.6,.2,.4,.8) infinite;
}
@keyframes lightningTrace {
  0%   { background-position: 100% 50%; }
  50%  { background-position: 0%   50%; }
  100% { background-position: 100% 50%; }
}

/* TCG / OCG format selector */
.univ-fmt { display: flex; gap: 10px; margin-bottom: 18px; }
.univ-fmt .fmt-tab {
  display: flex; align-items: baseline; gap: 10px; padding: 12px 22px;
  border-radius: 12px; border: 1px solid var(--line-2);
  background: color-mix(in srgb, var(--surface) 75%, transparent);
  color: var(--ink-2); cursor: pointer; transition: all .22s ease;
  font-family: var(--mono); letter-spacing: .12em;
}
.univ-fmt .fmt-tab .fmt-mark { font-size: 13px; font-weight: 600; }
.univ-fmt .fmt-tab .fmt-sub  { font-size: 10px; opacity: .55; letter-spacing: .14em; text-transform: uppercase; }
.univ-fmt .fmt-tab:hover { border-color: var(--accent); color: var(--ink); }
.univ-fmt .fmt-tab.active {
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent) 22%, transparent), color-mix(in srgb, var(--accent-2) 8%, transparent));
  border-color: var(--accent); color: var(--ink);
  box-shadow: 0 0 0 1px color-mix(in srgb, var(--accent) 40%, transparent), 0 12px 28px -16px var(--accent);
}
.univ-fmt .fmt-tab.active .fmt-sub { color: var(--accent-2); opacity: .9; }

/* Product photo on white bg — UNIFORM size for all products */
.sealed-card .product-photo {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
  box-shadow: 0 10px 30px -10px rgba(0,0,0,.35), inset 0 0 0 1px rgba(0,0,0,.06);
  overflow: hidden;
}
.sealed-card .product-photo img {
  position: relative; z-index: 2;
  width: 100%; height: 100%;
  object-fit: contain; object-position: center;
  background: #fff;
}
.sealed-card .product-photo .photo-placeholder {
  position: absolute; inset: 0;
  display: none;
  flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  padding: 18px; gap: 10px;
  background: linear-gradient(160deg, #ffffff, #f3eefb);
  color: #1a1530;
  z-index: 1;
}
.sealed-card .product-photo .ph-glyph     { font-size: 48px; line-height: 1; opacity: .9; color: var(--accent); text-shadow: 0 0 18px color-mix(in srgb, var(--accent) 35%, transparent); }
.sealed-card .product-photo .ph-franchise { font-family: var(--mono); font-size: 10px; letter-spacing: .18em; text-transform: uppercase; opacity: .55; color: #4a3d6e; }
.sealed-card .product-photo .ph-name      { font-family: var(--serif); font-size: 15px; line-height: 1.25; font-weight: 500; color: #1a1530; max-width: 80%; }

/* Tab switch animation — replaces .reveal IntersectionObserver path on grid items */
@keyframes univItemIn {
  from { opacity: 0; transform: translateY(14px); filter: blur(6px); }
  to   { opacity: 1; transform: none; filter: none; }
}

/* Franchise logo in section header (instead of our mark) */
.univ-head .universe-mark .ico.franchise-ico {
  width: auto !important; height: 80px !important; max-width: 220px;
  background: transparent !important; border: 0 !important; padding: 0 !important;
  border-radius: 0 !important; overflow: visible !important;
  display: flex; align-items: center; justify-content: flex-end;
  filter: drop-shadow(0 6px 18px rgba(0,0,0,.55));
}
.univ-head .universe-mark .ico.franchise-ico img {
  width: auto !important; height: 100% !important; max-width: 100%;
  object-fit: contain !important; opacity: 1 !important;
}
.universe-mark .franchise-fallback { display: none; place-items: center; font-family: var(--serif); font-size: 28px; color: var(--ink); width: 56px; height: 56px; border-radius: 10px; border: 1px solid var(--line); }

/* Multi-logo franchise header (es. CCG: Bleach + Naruto + chip) */
.univ-head .universe-mark .ico.franchise-ico--multi { max-width: 360px !important; height: 56px !important; gap: 12px; }
.univ-head .universe-mark .ico.franchise-ico--multi img { max-width: 104px !important; }
.universe-mark .franchise-chip {
  align-self: center; font-family: var(--mono, monospace); font-size: 11px; letter-spacing: .06em;
  text-transform: uppercase; color: var(--ink); white-space: nowrap;
  padding: 6px 10px; border-radius: 999px; border: 1px solid var(--line-2);
  background: color-mix(in srgb, var(--surface) 70%, transparent);
}
@media (max-width: 760px) {
  .univ-head .universe-mark .ico.franchise-ico--multi { max-width: 100% !important; height: 52px !important; gap: 10px; flex-wrap: wrap; justify-content: flex-start; }
}

/* Image slots inside sealed-card thumbnail */
.sealed-card image-slot {
  background: linear-gradient(180deg, rgba(255,255,255,.04), transparent 30%), linear-gradient(160deg, #0a0d14, #050709);
  box-shadow: 0 30px 60px -20px rgba(0,0,0,.7), inset 0 0 0 1px rgba(255,255,255,.06);
}
.citem image-slot { background: linear-gradient(180deg, rgba(255,255,255,.04), transparent 30%), linear-gradient(160deg, #0a0d14, #050709); }
.qv-box-wrap image-slot {
  box-shadow: 0 40px 80px -20px rgba(0,0,0,.6), inset 0 0 0 1px rgba(255,255,255,.06);
}
.box.alt   { background: linear-gradient(180deg, rgba(255,255,255,.08), transparent 30%), linear-gradient(160deg, #0c1424 0%, #1d2c4b 50%, #060a14 100%); }
.box.alt2  { background: linear-gradient(180deg, rgba(255,255,255,.08), transparent 30%), linear-gradient(160deg, #1f0608 0%, #4a0e16 50%, #0d0405 100%); }
.box.alt3  { background: linear-gradient(180deg, rgba(255,255,255,.08), transparent 30%), linear-gradient(160deg, #0a1f14 0%, #0f3a26 50%, #04130a 100%); }
.box.alt4  { background: linear-gradient(180deg, rgba(255,255,255,.08), transparent 30%), linear-gradient(160deg, #2a1a05 0%, #4d2f10 50%, #150a05 100%); }
.box.alt5  { background: linear-gradient(180deg, rgba(255,255,255,.08), transparent 30%), linear-gradient(160deg, #190a2c 0%, #38205a 50%, #0a0414 100%); }
.box.alt6  { background: linear-gradient(180deg, rgba(255,255,255,.08), transparent 30%), linear-gradient(160deg, #0a1422 0%, #20364d 50%, #050a13 100%); }

/* ─ Themed variants — recolor band/window/glyph for each box color ─ */
.box.alt   .box-band, .box.alt   .box-band.bot { color: rgba(180,200,255,.85); border-color: rgba(180,200,255,.22); }
.box.alt   .box-window { border-color: rgba(180,200,255,.32); }
.box.alt   .box-art-bg { background: radial-gradient(60% 70% at 50% 35%, rgba(150,180,255,.5), transparent 65%), radial-gradient(40% 50% at 25% 80%, rgba(100,140,255,.3), transparent 70%), radial-gradient(40% 50% at 80% 75%, rgba(80,200,255,.32), transparent 70%); }
.box.alt   .box-glyph { color: rgba(200,220,255,.9); text-shadow: 0 0 18px rgba(150,180,255,.6); }
.box.alt   .box-name .box-name-1 { color: rgba(220,230,255,.96); }

.box.alt2  .box-band, .box.alt2  .box-band.bot { color: rgba(255,200,200,.85); border-color: rgba(255,180,180,.22); }
.box.alt2  .box-window { border-color: rgba(255,180,180,.32); }
.box.alt2  .box-art-bg { background: radial-gradient(60% 70% at 50% 35%, rgba(255,140,140,.5), transparent 65%), radial-gradient(40% 50% at 25% 80%, rgba(200,90,90,.3), transparent 70%), radial-gradient(40% 50% at 80% 75%, rgba(255,180,80,.32), transparent 70%); }
.box.alt2  .box-glyph { color: rgba(255,220,200,.92); text-shadow: 0 0 18px rgba(255,140,140,.6); }
.box.alt2  .box-name .box-name-1 { color: rgba(255,230,220,.96); }

.box.alt3  .box-band, .box.alt3  .box-band.bot { color: rgba(180,255,210,.85); border-color: rgba(160,255,200,.22); }
.box.alt3  .box-window { border-color: rgba(160,255,200,.32); }
.box.alt3  .box-art-bg { background: radial-gradient(60% 70% at 50% 35%, rgba(140,230,180,.5), transparent 65%), radial-gradient(40% 50% at 25% 80%, rgba(80,200,140,.3), transparent 70%), radial-gradient(40% 50% at 80% 75%, rgba(200,255,180,.32), transparent 70%); }
.box.alt3  .box-glyph { color: rgba(200,255,220,.92); }
.box.alt3  .box-name .box-name-1 { color: rgba(220,255,230,.96); }

.box.alt4  .box-band, .box.alt4  .box-band.bot { color: rgba(255,220,160,.85); border-color: rgba(255,210,140,.24); }
.box.alt4  .box-window { border-color: rgba(255,210,140,.36); }
.box.alt4  .box-art-bg { background: radial-gradient(60% 70% at 50% 35%, rgba(255,200,120,.55), transparent 65%), radial-gradient(40% 50% at 25% 80%, rgba(200,140,60,.3), transparent 70%), radial-gradient(40% 50% at 80% 75%, rgba(255,180,80,.32), transparent 70%); }
.box.alt4  .box-glyph { color: rgba(255,235,180,.95); text-shadow: 0 0 18px rgba(255,200,120,.7); }

.box.alt5  .box-band, .box.alt5  .box-band.bot { color: rgba(220,200,255,.85); border-color: rgba(200,170,255,.22); }
.box.alt5  .box-window { border-color: rgba(200,170,255,.32); }
.box.alt5  .box-art-bg { background: radial-gradient(60% 70% at 50% 35%, rgba(180,150,255,.5), transparent 65%), radial-gradient(40% 50% at 25% 80%, rgba(140,100,200,.3), transparent 70%), radial-gradient(40% 50% at 80% 75%, rgba(220,180,255,.32), transparent 70%); }
.box.alt5  .box-glyph { color: rgba(230,210,255,.95); text-shadow: 0 0 18px rgba(180,150,255,.6); }

.box.alt6  .box-band, .box.alt6  .box-band.bot { color: rgba(200,225,255,.85); border-color: rgba(180,220,255,.22); }
.box.alt6  .box-window { border-color: rgba(180,220,255,.32); }
.box.alt6  .box-art-bg { background: radial-gradient(60% 70% at 50% 35%, rgba(160,210,255,.5), transparent 65%), radial-gradient(40% 50% at 25% 80%, rgba(120,170,220,.3), transparent 70%), radial-gradient(40% 50% at 80% 75%, rgba(200,230,255,.32), transparent 70%); }
.box.alt6  .box-glyph { color: rgba(220,235,255,.95); text-shadow: 0 0 18px rgba(160,210,255,.6); }

/* Cleanup: hide the legacy ::after / .lbl from the simpler boxes */
.box::after { display: none !important; }
.box .lbl { display: none !important; }

.sealed-card.alt  .box { background: linear-gradient(180deg, rgba(255,255,255,.08), transparent 25%), linear-gradient(160deg, #0c1424, #1d2c4b 50%, #060a14); }
.sealed-card.alt  .box::after { border-color: rgba(180,200,255,.36); background: radial-gradient(70% 60% at 50% 40%, rgba(160,180,255,.3), transparent 70%); }
.sealed-card.alt  .box .lbl { color: rgba(180,200,255,.78); }
.sealed-card.alt2 .box { background: linear-gradient(180deg, rgba(255,255,255,.08), transparent 25%), linear-gradient(160deg, #1f0608, #4a0e16 50%, #0d0405); }
.sealed-card.alt2 .box::after { border-color: rgba(255,180,180,.36); background: radial-gradient(70% 60% at 50% 40%, rgba(255,160,160,.28), transparent 70%); }
.sealed-card.alt2 .box .lbl { color: rgba(255,190,190,.78); }
.sealed-card.alt3 .box { background: linear-gradient(180deg, rgba(255,255,255,.08), transparent 25%), linear-gradient(160deg, #0a1f14, #0f3a26 50%, #04130a); }
.sealed-card.alt3 .box::after { border-color: rgba(160,255,200,.36); background: radial-gradient(70% 60% at 50% 40%, rgba(140,230,180,.28), transparent 70%); }
.sealed-card.alt3 .box .lbl { color: rgba(170,255,205,.78); }
.sealed-card.alt4 .box { background: linear-gradient(180deg, rgba(255,255,255,.08), transparent 25%), linear-gradient(160deg, #2a1a05, #4d2f10 50%, #150a05); }
.sealed-card.alt4 .box::after { border-color: rgba(255,210,140,.4); background: radial-gradient(70% 60% at 50% 40%, rgba(255,200,120,.3), transparent 70%); }
.sealed-card.alt4 .box .lbl { color: rgba(255,220,160,.78); }
.sealed-card.alt5 .box { background: linear-gradient(180deg, rgba(255,255,255,.08), transparent 25%), linear-gradient(160deg, #190a2c, #38205a 50%, #0a0414); }
.sealed-card.alt5 .box::after { border-color: rgba(200,170,255,.36); background: radial-gradient(70% 60% at 50% 40%, rgba(180,150,255,.3), transparent 70%); }
.sealed-card.alt5 .box .lbl { color: rgba(220,200,255,.78); }
.sealed-card.alt6 .box { background: linear-gradient(180deg, rgba(255,255,255,.08), transparent 25%), linear-gradient(160deg, #0a1422, #20364d 50%, #050a13); }
.sealed-card.alt6 .box::after { border-color: rgba(180,220,255,.36); background: radial-gradient(70% 60% at 50% 40%, rgba(160,210,255,.28), transparent 70%); }
.sealed-card.alt6 .box .lbl { color: rgba(200,225,255,.78); }

.sealed-card .corner { position: absolute; top: 14px; left: 14px; right: 14px; display: flex; gap: 6px; justify-content: space-between; align-items: flex-start; z-index: 2; pointer-events: none; }
.sealed-card .pill-status { font: 500 9.5px var(--mono); letter-spacing: .18em; padding: 6px 10px; border-radius: 999px; background: color-mix(in srgb, var(--bg) 80%, transparent); border: 1px solid var(--line-2); color: var(--ink-2); -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px); display: inline-flex; align-items: center; gap: 6px; }
.sealed-card .pill-status .dot { width: 6px; height: 6px; border-radius: 50%; background: #6ad48a; box-shadow: 0 0 6px #6ad48a; }
.sealed-card .pill-status.pre { color: var(--accent); border-color: color-mix(in srgb, var(--accent) 50%, var(--line-2)); }
.sealed-card .pill-status.pre .dot { background: var(--accent); box-shadow: 0 0 6px var(--accent); }
.sealed-card .pill-status.sold { color: #f5c542; border-color: color-mix(in srgb, #f5c542 55%, var(--line-2)); }
.sealed-card .pill-status.sold .dot { background: #f5c542; box-shadow: 0 0 6px #f5c542; }
.sealed-card .pill-stock { font: 500 9px var(--mono); letter-spacing: .18em; color: var(--mute); padding: 6px 10px; border-radius: 999px; background: color-mix(in srgb, var(--bg) 70%, transparent); -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px); }

.sealed-card .info { display: flex; flex-direction: column; gap: 10px; flex: 1 1 auto; justify-content: flex-end; }
.sealed-card .info .row1 { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; }
.sealed-card .info .nm { font-family: var(--serif); font-size: 19px; letter-spacing: -.01em; line-height: 1.2; }
.sealed-card .info .pr { font-family: var(--serif); font-size: 19px; color: var(--accent); white-space: nowrap; }
.sealed-card .info .sub { font: 500 10px var(--mono); letter-spacing: .14em; color: var(--ink-2); }
.sealed-card .info .release { font: 500 10px var(--mono); letter-spacing: .14em; color: var(--accent); display: flex; align-items: center; gap: 8px; }
.sealed-card .info .release::before { content: "⟶"; font-family: var(--serif); font-style: italic; font-size: 14px; }

.sealed-card .cta-row { display: flex; gap: 8px; margin-top: 4px; }
.sealed-card .cta-row .btn-sm { flex: 1; font: 500 10.5px var(--mono); letter-spacing: .14em; padding: 11px 14px; border-radius: 999px; text-align: center; transition: all .2s; }
.sealed-card .cta-row .btn-sm.solid { background: var(--ink); color: var(--bg); }
.sealed-card .cta-row .btn-sm.solid:hover { background: var(--accent); color: var(--ink-on-accent); }
.sealed-card .cta-row .btn-sm.gold { background: linear-gradient(180deg, var(--accent-2), var(--accent)); color: var(--ink-on-accent); }
.sealed-card .cta-row .btn-sm.gold:hover { filter: brightness(1.06); }
.sealed-card .cta-row .btn-sm.ghost { border: 1px solid var(--line-2); color: var(--ink-2); flex: 0 0 auto; padding: 11px 14px; }
.sealed-card .cta-row .btn-sm.ghost:hover { color: var(--accent); border-color: var(--accent); }
.sealed-card .cta-row .btn-sm:disabled { opacity: .5; cursor: not-allowed; filter: grayscale(.3); }
.sealed-card .cta-row .btn-sm:disabled:hover { background: var(--ink); color: var(--bg); filter: grayscale(.3); }
.trust { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; margin-top: 24px; }
.trust .t { padding: 30px 0 0; border-top: 1px solid var(--line); }
.trust .t .n { font-family: var(--serif); color: var(--accent); font-size: 32px; line-height: 1; }
.trust .t .l { font-family: var(--serif); margin-top: 22px; font-size: 22px; letter-spacing: -.014em; line-height: 1.2; }
.trust .t .d { color: var(--ink-2); margin-top: 12px; font-size: 14px; line-height: 1.55; }
@media (max-width: 880px) { .trust { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .trust { grid-template-columns: 1fr; } }

/* FINAL CTA */
.endcta { text-align: center; padding: clamp(120px, 16vw, 220px) 0; position: relative; overflow: hidden; }
.endcta::before { content: ""; position: absolute; inset: 0; background:
  radial-gradient(50% 50% at 50% 60%, color-mix(in srgb, var(--accent) 12%, transparent), transparent 70%);
  pointer-events: none;
}
.endcta h2 { font-size: clamp(56px, 9vw, 150px); line-height: .98; font-weight: 320; letter-spacing: -.025em; position: relative; }
.endcta h2 em { font-style: italic; color: var(--accent); }
.endcta p { color: var(--ink-2); margin: 26px auto 0; max-width: 56ch; position: relative; font-size: 16px; }
.endcta .ctas { display: inline-flex; gap: 14px; margin-top: 40px; position: relative; }

/* LIVE BANNER — Sbustiamo insieme in Live (TikTok / Twitch) */
.live-banner { padding: clamp(56px, 8vw, 110px) 0; position: relative; overflow: hidden; border-top: 1px solid var(--line);
  background:
    radial-gradient(70% 120% at 15% 0%, rgba(254,44,85,.16), transparent 60%),
    radial-gradient(70% 120% at 85% 100%, rgba(145,70,255,.20), transparent 60%),
    radial-gradient(60% 100% at 50% 50%, rgba(37,244,238,.08), transparent 70%),
    var(--bg-2); }
.live-banner .live-inner { text-align: center; display: flex; flex-direction: column; align-items: center; }
.live-badge { display: inline-flex; align-items: center; gap: 9px; font: 600 11px var(--mono); letter-spacing: .22em; text-transform: uppercase;
  color: #fff; padding: 8px 16px; border-radius: 999px; border: 1px solid rgba(255,255,255,.18);
  background: color-mix(in srgb, #fe2c55 22%, transparent); }
.live-badge .live-dot { width: 8px; height: 8px; border-radius: 50%; background: #fe2c55; box-shadow: 0 0 0 0 rgba(254,44,85,.7); animation: livePulse 1.6s infinite; }
@keyframes livePulse { 0% { box-shadow: 0 0 0 0 rgba(254,44,85,.6); } 70% { box-shadow: 0 0 0 10px rgba(254,44,85,0); } 100% { box-shadow: 0 0 0 0 rgba(254,44,85,0); } }
.live-banner h2 { font-size: clamp(38px, 6vw, 84px); line-height: 1; letter-spacing: -.02em; margin-top: 20px; }
.live-banner h2 em { font-style: italic; color: var(--accent); }
.live-banner p { color: var(--ink-2); margin: 18px auto 0; max-width: 52ch; font-size: 16px; }
.live-ctas { display: inline-flex; gap: 14px; margin-top: 32px; flex-wrap: wrap; justify-content: center; }
.live-btn { display: inline-flex; align-items: center; gap: 10px; padding: 15px 26px; border-radius: 14px; font-weight: 700;
  font-size: 15px; letter-spacing: .01em; color: #fff; transition: transform .22s ease, box-shadow .22s ease, filter .22s ease; }
.live-btn:hover { transform: translateY(-3px); filter: brightness(1.06); }
.live-btn.tiktok { background: #010101; border: 1px solid rgba(255,255,255,.16);
  box-shadow: 0 10px 30px -10px rgba(254,44,85,.6), 0 10px 30px -14px rgba(37,244,238,.55); }
.live-btn.twitch { background: #9146ff; border: 1px solid #9146ff; box-shadow: 0 10px 30px -10px rgba(145,70,255,.7); }
.live-btn.soon { opacity: .6; cursor: default; box-shadow: none; }
.live-btn.soon:hover { transform: none; filter: none; }
@media (max-width: 520px) { .live-ctas { flex-direction: column; width: 100%; } .live-btn { justify-content: center; width: 100%; } }

/* Vault + Live merged section */
.vault-live .vault-live-row { margin-top: 44px; padding-top: 32px; border-top: 1px solid var(--line);
  display: flex; flex-direction: column; align-items: center; gap: 16px; position: relative; }
@media (max-width: 520px) { .vault-live .vault-live-row { margin-top: 32px; padding-top: 24px; } }

/* FOOTER */
.footer { border-top: 1px solid var(--line); padding: 72px 0 32px; color: var(--ink-2); background: var(--bg-2); }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 44px; }
.footer-brand { display: flex; flex-direction: column; gap: 18px; max-width: 340px; }
.footer-logo { width: 100%; max-width: 200px; height: auto; display: block; background: transparent; border: 0; border-radius: 0; filter: drop-shadow(0 8px 24px color-mix(in srgb, var(--accent) 25%, transparent)); }
.footer-claim { font-family: var(--serif); font-style: italic; font-size: 15.5px; color: var(--ink-2); margin: 0; line-height: 1.55; }
.footer-col { display: flex; flex-direction: column; gap: 11px; }
.footer-col h4 { font: 600 11px var(--mono); letter-spacing: .18em; text-transform: uppercase; color: var(--ink); margin: 0 0 4px; }
.footer-col a { color: var(--ink-2); font-size: 14px; transition: color .2s; }
.footer-col a:hover { color: var(--accent-2); }
.footer-soon { color: var(--mute); font-size: 14px; opacity: .7; }
@media (max-width: 880px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; } .footer-brand { grid-column: 1 / -1; max-width: 100%; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 24px; } }
.footer-bottom { margin-top: 0; padding-top: 24px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; align-items: center; font: 500 10px var(--mono); letter-spacing: .16em; color: var(--mute); gap: 16px; flex-wrap: wrap; }
.footer-bottom .fb-left { letter-spacing: .14em; }
.footer-bottom a { color: var(--ink-2); }
.footer-bottom a:hover { color: var(--accent-2); }

/* MARQUEE */
.marquee { padding: 26px 0; overflow: hidden; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--bg-2); }
.marquee .track { display: inline-flex; gap: 60px; animation: marquee 40s linear infinite; white-space: nowrap; }
.marquee .item { display: inline-flex; align-items: center; gap: 18px; color: var(--ink-2); font-family: var(--serif); font-size: 24px; }
.marquee .item .star { color: var(--accent); font-size: 14px; }
.marquee .item em { color: var(--accent); font-style: italic; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* FILTER ROW */
.filter-row { display: flex; justify-content: space-between; align-items: center; gap: 18px; margin-bottom: 28px; padding-bottom: 22px; border-bottom: 1px solid var(--line); flex-wrap: wrap; }
.chips { display: flex; gap: 8px; flex-wrap: wrap; }
.chip { font: 500 10.5px var(--mono); letter-spacing: .14em; padding: 9px 14px; border-radius: 999px; border: 1px solid var(--line-2); color: var(--ink-2); cursor: pointer; transition: all .2s; }
.chip:hover { color: var(--ink); border-color: var(--ink-2); }
.chip.active { background: var(--ink); color: var(--bg); border-color: var(--ink); }
.sort { display: flex; align-items: center; gap: 10px; color: var(--ink-2); font: 500 10.5px var(--mono); letter-spacing: .14em; }
.sort select { background: var(--bg-2); border: 1px solid var(--line-2); color: var(--ink); border-radius: 999px; padding: 8px 14px; font: 500 11px var(--mono); letter-spacing: .12em; }
