/* =========================================================
   TROCADORSTORE.SHOP — neon street-drop design system
   Near-black base, glowing lime/pink/cyan accents, full-pill
   buttons, rotated sticker badges, glow shadows (no hard
   offset shadows, no serif type, no soft cream/organic look).
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Bungee&family=DM+Sans:wght@400;500;600;700;800&display=swap');

:root{
  --bg:#0A0A12;
  --bg-alt:#121220;
  --surface:#181826;
  --surface-2:#1f1f30;
  --line:rgba(255,255,255,.09);
  --white:#F5F5FF;
  --dim:#9c9cb5;
  --lime:#C6FF3D;
  --pink:#FF3DBB;
  --cyan:#3DE1FF;
  --radius:22px;
  --radius-sm:14px;
  --glow-lime: 0 0 0 2px var(--lime), 0 0 26px -4px rgba(198,255,61,.65);
  --glow-pink: 0 0 0 2px var(--pink), 0 0 26px -4px rgba(255,61,187,.65);
  --glow-cyan: 0 0 0 2px var(--cyan), 0 0 26px -4px rgba(61,225,255,.65);
  --display:'Bungee', 'Arial Black', sans-serif;
  --body:'DM Sans', system-ui, sans-serif;
}

*,*::before,*::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0; background:var(--bg); color:var(--white);
  font-family:var(--body); line-height:1.6; -webkit-font-smoothing:antialiased;
  background-image:radial-gradient(circle at 15% 0%, rgba(255,61,187,.14), transparent 45%),
                    radial-gradient(circle at 85% 15%, rgba(61,225,255,.12), transparent 45%);
}
h1,h2,h3,h4{ font-family:var(--display); color:#fff; line-height:1.2; margin:0; font-weight:400; letter-spacing:.01em; }
p{ margin:0; }
a{ color:inherit; text-decoration:none; }
img{ max-width:100%; display:block; }
ul{ margin:0; padding:0; list-style:none; }
button{ font-family:inherit; cursor:pointer; }
input,select,textarea{ font-family:inherit; }

.wrap{ max-width:1200px; margin:0 auto; padding:0 24px; }
.wrap-narrow{ max-width:800px; margin:0 auto; padding:0 24px; }
section{ padding:88px 0; }

.chip{
  display:inline-flex; align-items:center; gap:8px; background:var(--surface); color:var(--lime);
  border:1px solid var(--line); padding:8px 16px; border-radius:999px; font-weight:700; font-size:12.5px;
  text-transform:uppercase; letter-spacing:.06em; box-shadow:var(--glow-lime); transform:rotate(-2deg);
}
.sec-title{ font-size:clamp(1.9rem,3.6vw,2.8rem); margin-top:16px; max-width:680px; }
.sec-sub{ margin-top:16px; color:var(--dim); max-width:560px; font-size:16px; }

/* ---------- buttons ---------- */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  padding:16px 30px; border:none; border-radius:999px; font-weight:700; font-size:14.5px;
  background:var(--surface-2); color:#fff; box-shadow:0 0 0 1px var(--line); transition:transform .15s ease, box-shadow .15s ease;
}
.btn:hover{ transform:translateY(-2px); }
.btn-lime{ background:var(--lime); color:#0A0A12; box-shadow:var(--glow-lime); }
.btn-pink{ background:var(--pink); color:#0A0A12; box-shadow:var(--glow-pink); }
.btn-cyan{ background:var(--cyan); color:#0A0A12; box-shadow:var(--glow-cyan); }
.btn-block{ width:100%; }

/* ---------- ticker ---------- */
.ticker{ background:var(--surface); border-top:1px solid var(--line); border-bottom:1px solid var(--line); overflow:hidden; white-space:nowrap; }
.ticker-track{ display:inline-flex; gap:0; animation:tick 22s linear infinite; }
.ticker-track span{
  display:inline-flex; align-items:center; gap:8px; padding:11px 28px; font-weight:700; font-size:12.5px; text-transform:uppercase;
  color:var(--dim); letter-spacing:.05em;
}
.ticker-track span b{ color:var(--lime); }
.ticker-track span::after{ content:'✦'; color:var(--pink); margin-left:24px; }
@keyframes tick{ from{ transform:translateX(0); } to{ transform:translateX(-50%); } }

/* ---------- header ---------- */
header.site-head{ background:rgba(10,10,18,.85); backdrop-filter:blur(10px); border-bottom:1px solid var(--line); position:sticky; top:0; z-index:50; }
.head-row{ display:flex; align-items:center; justify-content:space-between; height:80px; }
.brand{ display:flex; align-items:center; gap:10px; font-family:var(--display); font-size:17px; }
.brand-mark{ width:38px; height:38px; border-radius:50%; background:linear-gradient(135deg,var(--pink),var(--cyan)); display:flex; align-items:center; justify-content:center; }
.brand-mark svg{ width:18px; height:18px; color:#0A0A12; }

nav.main-nav{ display:none; align-items:center; gap:30px; font-weight:700; font-size:13.5px; }
nav.main-nav a{ color:var(--dim); transition:color .15s ease; }
nav.main-nav a:hover{ color:var(--lime); }
@media(min-width:940px){ nav.main-nav{ display:flex; } }

.head-actions{ display:flex; align-items:center; gap:10px; }
.cart-btn{
  display:flex; align-items:center; gap:8px; background:var(--surface-2); color:#fff; border:1px solid var(--line);
  border-radius:999px; padding:10px 18px; font-weight:700; font-size:13.5px;
}
.cart-btn svg{ width:17px; height:17px; }
.cart-count{ background:var(--lime); color:#0A0A12; font-size:11px; font-weight:800; min-width:20px; height:20px; border-radius:50%; display:flex; align-items:center; justify-content:center; }

.burger{ background:var(--surface-2); border:1px solid var(--line); border-radius:50%; width:42px; height:42px; display:flex; align-items:center; justify-content:center; }
.burger svg{ width:18px; height:18px; }
@media(min-width:940px){ .burger{ display:none; } }
.mobile-nav{ display:none; flex-direction:column; padding:8px 0 20px; font-weight:700; font-size:14px; }
.mobile-nav.open{ display:flex; }
.mobile-nav a{ padding:12px 4px; border-bottom:1px solid var(--line); color:var(--dim); }

/* ---------- hero ---------- */
.hero{ padding:60px 0 90px; overflow:hidden; }
.hero-grid{ display:grid; gap:52px; }
@media(min-width:980px){ .hero-grid{ grid-template-columns:1.05fr .95fr; align-items:center; } }
.hero h1{ font-size:clamp(2.2rem,5.4vw,3.6rem); margin-top:20px; }
.hero h1 .hi{ color:var(--lime); }
.hero p.lede{ margin-top:22px; font-size:17px; color:var(--dim); max-width:480px; }
.hero-ctas{ display:flex; flex-wrap:wrap; gap:14px; margin-top:32px; }

.badge-row{ display:flex; flex-wrap:wrap; gap:12px; margin-top:32px; }
.spec-tag{ background:var(--surface); border:1px solid var(--line); border-radius:999px; padding:8px 16px; font-weight:700; font-size:12.5px; }
.spec-tag b{ color:var(--cyan); }

.hero-frame{
  position:relative; background:var(--surface); border-radius:32px; padding:26px; box-shadow:var(--glow-pink);
}
.hero-frame img{ border-radius:20px; }
.sticker{
  position:absolute; background:var(--lime); color:#0A0A12; border-radius:50%; font-family:var(--display);
  display:flex; align-items:center; justify-content:center; text-align:center; box-shadow:var(--glow-lime);
  width:112px; height:112px; font-size:14px; line-height:1.15; transform:rotate(9deg);
}
.sticker.top-right{ top:-22px; right:-18px; }
.sticker span{ display:block; font-size:24px; }

/* ---------- stat strip ---------- */
.stat-strip{ background:var(--bg-alt); border-top:1px solid var(--line); border-bottom:1px solid var(--line); }
.stat-grid{ display:grid; grid-template-columns:repeat(2,1fr); gap:24px; }
@media(min-width:760px){ .stat-grid{ grid-template-columns:repeat(4,1fr); } }
.stat-cell{ text-align:center; }
.stat-cell b{ display:block; font-family:var(--display); font-size:clamp(1.5rem,2.8vw,2.2rem); color:var(--pink); }
.stat-cell span{ font-size:12px; font-weight:700; text-transform:uppercase; letter-spacing:.05em; color:var(--dim); }

/* ---------- spec cards ---------- */
.spec-cards{ display:grid; gap:18px; margin-top:36px; grid-template-columns:1fr; }
@media(min-width:700px){ .spec-cards{ grid-template-columns:repeat(3,1fr); } }
.spec-card{ background:var(--surface); border:1px solid var(--line); border-radius:var(--radius); padding:28px; }
.spec-card.pop{ box-shadow:var(--glow-cyan); }
.spec-card .sc-label{ font-size:12px; font-weight:700; text-transform:uppercase; letter-spacing:.06em; color:var(--dim); }
.spec-card .sc-value{ font-family:var(--display); font-size:1.7rem; margin-top:10px; color:#fff; }
.spec-card .sc-note{ margin-top:8px; font-size:13px; color:var(--dim); }

/* ---------- shop / buy section ---------- */
.shop-grid{ display:grid; gap:50px; }
@media(min-width:980px){ .shop-grid{ grid-template-columns:1fr 1fr; align-items:flex-start; } }

.gallery-box{ background:var(--surface); border:1px solid var(--line); border-radius:var(--radius); aspect-ratio:1/1; display:flex; align-items:center; justify-content:center; padding:30px; }
.thumb-strip{ display:flex; gap:10px; margin-top:14px; }
.thumb-strip button{ width:64px; height:64px; background:var(--surface); border:1px solid var(--line); border-radius:14px; padding:6px; }
.thumb-strip button.active{ box-shadow:var(--glow-lime); }
.thumb-strip img{ width:100%; height:100%; object-fit:contain; }

.ticket{ background:var(--surface); border:1px solid var(--line); border-radius:var(--radius); padding:36px; }
.rating-row{ display:flex; align-items:center; gap:10px; font-weight:700; font-size:14px; }
.rating-row b{ background:var(--lime); color:#0A0A12; padding:3px 10px; border-radius:999px; }
.ticket h2{ font-size:1.9rem; margin-top:16px; }
.ticket .model-line{ margin-top:8px; color:var(--dim); font-size:14.5px; }

.price-row{ display:flex; align-items:baseline; gap:12px; margin-top:26px; padding-top:26px; border-top:1px dashed var(--line); flex-wrap:wrap; }
.price-now{ font-family:var(--display); font-size:2.2rem; color:var(--lime); }
.price-was{ color:var(--dim); text-decoration:line-through; font-size:17px; font-weight:700; }
.save-pill{ background:var(--pink); color:#0A0A12; border-radius:999px; padding:5px 12px; font-weight:800; font-size:12.5px; }

.field-label{ font-size:12px; font-weight:700; text-transform:uppercase; letter-spacing:.06em; margin:26px 0 10px; color:var(--dim); }
.opt-row{ display:flex; flex-wrap:wrap; gap:10px; }
.opt-btn{ padding:10px 18px; background:var(--surface-2); border:1px solid var(--line); border-radius:999px; font-weight:700; font-size:13px; color:#fff; }
.opt-btn.active{ background:var(--cyan); color:#0A0A12; box-shadow:var(--glow-cyan); }

.qty-row{ display:inline-flex; align-items:center; background:var(--surface-2); border:1px solid var(--line); border-radius:999px; overflow:hidden; }
.qty-row button{ background:none; border:none; width:44px; height:44px; font-weight:800; font-size:18px; color:#fff; }
.qty-row input{ width:46px; text-align:center; border:none; background:none; color:#fff; font-weight:800; }

.ticket-ctas{ display:flex; flex-wrap:wrap; gap:12px; margin-top:28px; }
.trust-note{ display:flex; align-items:center; gap:8px; margin-top:22px; font-size:12.5px; color:var(--dim); }
.trust-note svg{ width:16px; height:16px; color:var(--lime); }

/* ---------- feature grid (cards, not rows) ---------- */
.feature-grid{ display:grid; gap:20px; margin-top:40px; grid-template-columns:1fr; }
@media(min-width:700px){ .feature-grid{ grid-template-columns:repeat(2,1fr); } }
.feature-card{ background:var(--surface); border:1px solid var(--line); border-radius:var(--radius); padding:32px; }
.feature-card .fc-num{ font-family:var(--display); font-size:2rem; color:var(--pink); }
.feature-card h3{ font-size:1.2rem; margin-top:14px; font-family:var(--body); font-weight:800; }
.feature-card p{ margin-top:10px; font-size:14.5px; color:var(--dim); }

/* ---------- scrolling reviews ---------- */
.review-marquee{ overflow:hidden; margin-top:40px; }
.review-track{ display:flex; gap:20px; width:max-content; animation:reviewScroll 34s linear infinite; }
@keyframes reviewScroll{ from{ transform:translateX(0); } to{ transform:translateX(-50%); } }
.bubble{ width:320px; flex-shrink:0; background:var(--surface); border:1px solid var(--line); border-radius:var(--radius); padding:26px; }
.bubble .stars{ font-weight:800; color:var(--lime); font-size:14px; }
.bubble blockquote{ margin-top:12px; font-size:14.5px; color:#e8e8f5; }
.bubble-who{ margin-top:22px; display:flex; align-items:center; gap:10px; }
.bubble-avatar{ width:36px; height:36px; border-radius:50%; display:flex; align-items:center; justify-content:center; font-weight:800; font-size:12.5px; color:#0A0A12; }
.bubble-name{ font-weight:800; font-size:13.5px; }
.bubble-role{ font-size:11.5px; color:var(--dim); font-weight:600; }

/* ---------- guarantee badge ---------- */
.stamp-wrap{ display:flex; justify-content:center; padding:20px 0 90px; }
.stamp{
  width:210px; height:210px; border-radius:50%; border:2px dashed var(--lime); display:flex; align-items:center; justify-content:center;
  text-align:center; background:var(--surface); box-shadow:var(--glow-lime);
}
.stamp-inner{ padding:14px; }
.stamp-inner .s1{ font-family:var(--display); font-size:1.15rem; line-height:1.2; }
.stamp-inner .s2{ margin-top:8px; font-size:11px; font-weight:700; text-transform:uppercase; letter-spacing:.06em; color:var(--dim); }

/* ---------- FAQ accordion ---------- */
.faq-list{ margin-top:32px; display:flex; flex-direction:column; gap:12px; }
.faq-item{ background:var(--surface); border:1px solid var(--line); border-radius:var(--radius-sm); overflow:hidden; }
.faq-q{ width:100%; background:none; border:none; text-align:left; padding:22px 22px; display:flex; align-items:center; justify-content:space-between; gap:16px; font-weight:800; font-size:15px; color:#fff; }
.faq-q .plus{ width:28px; height:28px; border-radius:50%; background:var(--surface-2); flex-shrink:0; position:relative; }
.faq-q .plus::before,.faq-q .plus::after{ content:''; position:absolute; top:50%; left:50%; background:var(--lime); transform:translate(-50%,-50%); }
.faq-q .plus::before{ width:12px; height:2px; }
.faq-q .plus::after{ width:2px; height:12px; transition:opacity .15s; }
.faq-item.open .faq-q .plus{ background:var(--lime); }
.faq-item.open .faq-q .plus::before,.faq-item.open .faq-q .plus::after{ background:#0A0A12; }
.faq-item.open .faq-q .plus::after{ opacity:0; }
.faq-a{ max-height:0; overflow:hidden; transition:max-height .25s ease; }
.faq-a-inner{ padding:0 22px 22px; font-size:14.5px; color:var(--dim); max-width:680px; }
.faq-item.open .faq-a{ max-height:260px; }

/* ---------- footer ---------- */
footer.site-foot{ background:var(--bg-alt); color:#fff; padding:64px 0 0; border-top:1px solid var(--line); }
.foot-grid{ display:grid; gap:40px; grid-template-columns:1fr; }
@media(min-width:760px){ .foot-grid{ grid-template-columns:1.5fr 1fr 1fr; } }
.foot-brand p{ margin-top:14px; color:var(--dim); font-size:14px; max-width:340px; }
.foot-col h4{ font-family:var(--display); font-size:12.5px; letter-spacing:.04em; margin-bottom:16px; color:var(--lime); }
.foot-col li{ margin-bottom:10px; }
.foot-col a{ color:var(--dim); font-size:14px; font-weight:600; }
.foot-col a:hover{ color:var(--cyan); }
.foot-bottom{ margin-top:50px; border-top:1px solid var(--line); padding:22px 0; display:flex; flex-wrap:wrap; gap:14px; align-items:center; justify-content:space-between; font-size:12px; font-weight:700; color:var(--dim); }
.pay-icons{ display:flex; gap:8px; }
.pay-card{ width:42px; height:28px; background:#fff; border-radius:6px; display:flex; align-items:center; justify-content:center; overflow:hidden; }
.pay-card svg{ width:100%; height:100%; }

/* ---------- cart drawer (right side, distinct from other sites' left drawer) ---------- */
.overlay{ position:fixed; inset:0; background:rgba(5,5,10,.7); opacity:0; pointer-events:none; transition:opacity .2s ease; z-index:70; }
.overlay.show{ opacity:1; pointer-events:auto; }
.drawer{
  position:fixed; top:0; right:0; height:100%; width:min(420px,100%); background:var(--bg-alt);
  border-left:1px solid var(--line); z-index:80; transform:translateX(100%); transition:transform .28s ease;
  display:flex; flex-direction:column;
}
.drawer.open{ transform:translateX(0); }
.drawer-head{ display:flex; align-items:center; justify-content:space-between; padding:22px 24px; border-bottom:1px solid var(--line); }
.drawer-head h3{ font-size:17px; font-family:var(--body); font-weight:800; }
.icon-btn{ background:var(--surface-2); border:1px solid var(--line); border-radius:50%; width:36px; height:36px; display:flex; align-items:center; justify-content:center; color:#fff; }
.drawer-body{ flex:1; overflow-y:auto; padding:24px; }
.drawer-item{ display:flex; gap:14px; align-items:center; }
.drawer-thumb{ width:74px; height:74px; background:var(--surface); border:1px solid var(--line); border-radius:14px; display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.drawer-item-info b{ display:block; font-size:14px; }
.drawer-item-info span{ font-size:12.5px; color:var(--dim); font-weight:600; }
.drawer-foot{ border-top:1px solid var(--line); padding:24px; }
.drawer-subtotal{ display:flex; justify-content:space-between; font-weight:800; font-size:16px; margin-bottom:16px; }
.empty-cart{ text-align:center; padding:40px 10px; color:var(--dim); font-weight:600; }
.empty-cart svg{ width:40px; height:40px; margin:0 auto 14px; color:var(--dim); }

.checkout-view{ display:none; }
.checkout-view.active{ display:block; }
.cart-view.hidden{ display:none; }
.back-to-cart{ background:none; border:none; color:var(--dim); font-weight:700; margin-bottom:16px; font-size:13.5px; }
.form-block{ margin-bottom:20px; }
.form-block h4{ font-size:11.5px; font-weight:800; text-transform:uppercase; letter-spacing:.06em; margin-bottom:10px; color:var(--dim); }
.form-grid{ display:grid; grid-template-columns:1fr 1fr; gap:10px; }
.form-grid .full{ grid-column:1/-1; }
input[type=text],input[type=email],input[type=tel]{
  width:100%; padding:12px 14px; border:1px solid var(--line); background:var(--surface); color:#fff; border-radius:12px; font-size:13.5px; outline:none;
}
input:focus{ box-shadow:var(--glow-cyan); }
.success-msg{ display:none; text-align:center; font-weight:800; background:var(--lime); color:#0A0A12; border-radius:14px; padding:14px; font-size:13px; text-transform:uppercase; }
.success-msg.show{ display:block; }
.secure-note{ margin-top:14px; font-size:12px; color:var(--dim); text-align:center; }

/* ---------- legal pages ---------- */
.legal-hero{ padding:56px 0 32px; border-bottom:1px solid var(--line); }
.legal-hero h1{ font-size:clamp(1.9rem,3.6vw,2.6rem); margin-top:14px; }
.legal-hero p{ margin-top:12px; color:var(--dim); max-width:560px; }

.legal-body{ padding:60px 0 100px; }
.legal-layout{ display:grid; gap:40px; }
@media(min-width:900px){ .legal-layout{ grid-template-columns:230px 1fr; align-items:flex-start; } }
.legal-toc{ position:sticky; top:100px; background:var(--surface); border:1px solid var(--line); border-radius:var(--radius); padding:22px; display:none; }
@media(min-width:900px){ .legal-toc{ display:block; } }
.legal-toc h4{ font-family:var(--display); font-size:11.5px; margin-bottom:14px; color:var(--lime); }
.legal-toc li{ margin-bottom:10px; }
.legal-toc a{ font-size:13px; font-weight:700; color:var(--dim); }
.legal-toc a:hover{ color:var(--cyan); }

.legal-content{ background:var(--surface); border:1px solid var(--line); border-radius:var(--radius); padding:36px; }
.legal-content section{ margin-bottom:30px; scroll-margin-top:100px; }
.legal-content section:last-child{ margin-bottom:0; }
.legal-content h2{ font-size:17px; margin-bottom:12px; font-family:var(--body); font-weight:800; }
.legal-content p{ margin-bottom:10px; font-size:14.5px; color:var(--dim); }
.legal-content ul{ margin:10px 0; padding-left:20px; list-style:disc; font-size:14.5px; color:var(--dim); }
.legal-content li{ margin-bottom:6px; }
.legal-content table{ width:100%; border-collapse:collapse; margin-top:14px; font-size:13.5px; }
.legal-content th,.legal-content td{ text-align:left; padding:11px 13px; border:1px solid var(--line); }
.legal-content th{ background:var(--surface-2); color:var(--lime); font-size:11px; text-transform:uppercase; }
.legal-content .updated{ font-weight:800; font-size:12px; margin-bottom:22px; display:inline-block; border-radius:999px; padding:6px 14px; background:var(--surface-2); color:var(--lime); }
.back-link{ display:inline-flex; align-items:center; gap:8px; font-weight:700; font-size:13px; color:var(--dim); }
.back-link svg{ width:15px; height:15px; }
