/* ==========================================================================
   BOLTIX — storefront design system
   theboltix.com
   ========================================================================== */

/* ---------------------------------------------------------------- tokens */
:root{
  /* brand */
  --volt:        #ffd60a;
  --volt-deep:   #f0b800;
  --bolt:        #3b5bff;
  --bolt-600:    #2f49d6;
  --bolt-700:    #2439ad;
  --bolt-soft:   #eef1ff;
  --violet:      #6d3bff;

  /* ink */
  --ink:         #0b0f1a;
  --ink-2:       #131a2b;
  --ink-3:       #1c2438;
  --line-dark:   #26304a;

  --text:        #10162a;
  --text-2:      #4a5570;
  --text-3:      #78829c;
  --line:        #e4e8f0;
  --line-2:      #eef1f6;
  --bg:          #ffffff;
  --bg-2:        #f6f8fc;
  --bg-3:        #eef2f8;

  /* status */
  --green:  #12a150;  --green-bg:  #e7f8ee;
  --amber:  #c47f0a;  --amber-bg:  #fdf4e3;
  --red:    #dc2626;  --red-bg:    #fdecec;
  --blue:   #2563eb;  --blue-bg:   #e9f0fe;
  --violet-bg:#f0eaff; --grey-bg:  #eef1f6;

  /* system */
  --radius:    14px;
  --radius-sm: 10px;
  --radius-lg: 20px;
  --shadow-xs: 0 1px 2px rgba(16,22,42,.05);
  --shadow-sm: 0 2px 8px rgba(16,22,42,.06);
  --shadow:    0 6px 24px rgba(16,22,42,.08);
  --shadow-lg: 0 20px 50px rgba(16,22,42,.14);
  --ring:      0 0 0 3px rgba(59,91,255,.22);

  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --display: 'Sora', var(--font);

  --wrap: 1240px;
  --header-h: 72px;
}

/* ---------------------------------------------------------------- reset */
*,*::before,*::after{ box-sizing:border-box; }
html{ -webkit-text-size-adjust:100%; scroll-behavior:smooth; }
body{
  margin:0; font-family:var(--font); color:var(--text); background:var(--bg);
  font-size:15.5px; line-height:1.65; -webkit-font-smoothing:antialiased;
}
img,svg{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
button{ font:inherit; cursor:pointer; }
input,select,textarea{ font:inherit; color:inherit; }
h1,h2,h3,h4{ font-family:var(--display); font-weight:700; line-height:1.18; letter-spacing:-.02em; margin:0 0 .5em; }
h1{ font-size:clamp(2rem,4.2vw,3.1rem); font-weight:800; letter-spacing:-.035em; }
h2{ font-size:clamp(1.5rem,2.7vw,2.15rem); font-weight:800; letter-spacing:-.03em; }
h3{ font-size:1.18rem; }
p{ margin:0 0 1em; }
ul,ol{ margin:0 0 1em; padding-left:1.25rem; }
hr{ border:0; border-top:1px solid var(--line); margin:2rem 0; }
:focus-visible{ outline:none; box-shadow:var(--ring); border-radius:6px; }

/* ---------------------------------------------------------------- layout */
.wrap{ width:100%; max-width:var(--wrap); margin-inline:auto; padding-inline:20px; }
.wrap-sm{ max-width:760px; }
.wrap-md{ max-width:980px; }
.section{ padding:64px 0; }
.section-sm{ padding:40px 0; }
.section-tint{ background:var(--bg-2); }
.stack{ display:flex; flex-direction:column; }
.row{ display:flex; align-items:center; }
.row-between{ display:flex; align-items:center; justify-content:space-between; gap:1rem; }
.gap-1{gap:.5rem}.gap-2{gap:1rem}.gap-3{gap:1.5rem}.gap-4{gap:2rem}
.grow{flex:1}
.text-center{text-align:center}
.muted{ color:var(--text-2); }
.small{ font-size:.86rem; }
.tiny{ font-size:.78rem; }
.mono{ font-family:ui-monospace,'SF Mono',Menlo,Consolas,monospace; }
.mt-0{margin-top:0}.mb-0{margin-bottom:0}
.hide{ display:none !important; }
@media(max-width:860px){ .hide-md{ display:none !important; } }
@media(max-width:640px){ .hide-sm{ display:none !important; } }

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

/* section headers */
.sec-head{ display:flex; align-items:flex-end; justify-content:space-between; gap:1.5rem; margin-bottom:2rem; }
.sec-head h2{ margin:0; }
.sec-head p{ margin:.4rem 0 0; color:var(--text-2); max-width:52ch; }
.eyebrow{
  display:inline-flex; align-items:center; gap:.45rem; font-size:.74rem; font-weight:700;
  letter-spacing:.13em; text-transform:uppercase; color:var(--bolt); margin-bottom:.7rem;
}
.eyebrow::before{ content:''; width:18px; height:2px; background:var(--volt); border-radius:2px; }

/* ---------------------------------------------------------------- buttons */
.btn{
  --btn-bg:var(--bolt); --btn-fg:#fff; --btn-bd:transparent;
  display:inline-flex; align-items:center; justify-content:center; gap:.5rem;
  padding:.72rem 1.3rem; border-radius:var(--radius-sm); border:1.5px solid var(--btn-bd);
  background:var(--btn-bg); color:var(--btn-fg); font-weight:650; font-size:.93rem;
  letter-spacing:-.01em; white-space:nowrap; transition:transform .12s, box-shadow .2s, background .2s, border-color .2s;
  box-shadow:var(--shadow-xs);
}
.btn:hover{ transform:translateY(-1px); box-shadow:var(--shadow-sm); }
.btn:active{ transform:translateY(0); }
.btn:disabled,.btn.is-disabled{ opacity:.5; pointer-events:none; }
.btn svg{ width:17px; height:17px; flex:none; }

.btn-primary:hover{ --btn-bg:var(--bolt-600); }
.btn-volt{ --btn-bg:var(--volt); --btn-fg:#221a00; }
.btn-volt:hover{ --btn-bg:var(--volt-deep); }
.btn-dark{ --btn-bg:var(--ink); --btn-fg:#fff; }
.btn-dark:hover{ --btn-bg:#1d2740; }
.btn-ghost{ --btn-bg:transparent; --btn-fg:var(--text); --btn-bd:var(--line); box-shadow:none; }
.btn-ghost:hover{ --btn-bd:var(--bolt); --btn-fg:var(--bolt); background:var(--bolt-soft); }
.btn-light{ --btn-bg:#fff; --btn-fg:var(--ink); }
.btn-outline-light{ --btn-bg:transparent; --btn-fg:#fff; --btn-bd:rgba(255,255,255,.3); box-shadow:none; }
.btn-outline-light:hover{ --btn-bd:#fff; background:rgba(255,255,255,.08); }
.btn-danger{ --btn-bg:var(--red); }
.btn-lg{ padding:.95rem 1.7rem; font-size:1rem; border-radius:12px; }
.btn-sm{ padding:.45rem .85rem; font-size:.82rem; border-radius:8px; }
.btn-block{ width:100%; }
.btn-icon{ padding:.55rem; width:38px; height:38px; }

.link{ color:var(--bolt); font-weight:600; }
.link:hover{ text-decoration:underline; }
.link-arrow{ display:inline-flex; align-items:center; gap:.35rem; color:var(--bolt); font-weight:650; font-size:.92rem; }
.link-arrow::after{ content:'→'; transition:transform .18s; }
.link-arrow:hover::after{ transform:translateX(3px); }

/* ---------------------------------------------------------------- badges */
.badge{
  display:inline-flex; align-items:center; gap:.3rem; padding:.22rem .6rem; border-radius:999px;
  font-size:.72rem; font-weight:700; letter-spacing:.02em; background:var(--grey-bg); color:var(--text-2);
}
.badge-green{ background:var(--green-bg); color:var(--green); }
.badge-amber{ background:var(--amber-bg); color:var(--amber); }
.badge-red{   background:var(--red-bg);   color:var(--red); }
.badge-blue{  background:var(--blue-bg);  color:var(--blue); }
.badge-violet{background:var(--violet-bg);color:var(--violet); }
.badge-grey{  background:var(--grey-bg);  color:var(--text-2); }
.badge-volt{  background:#fff6d1; color:#8a6800; }
.badge-dot::before{ content:''; width:6px; height:6px; border-radius:50%; background:currentColor; }

/* ---------------------------------------------------------------- announcement */
.announce{
  background:linear-gradient(90deg,var(--ink),#1c2b5e 55%,var(--ink));
  color:#dfe6f7; font-size:.8rem; text-align:center; padding:.55rem 1rem; letter-spacing:.01em;
}
.announce strong{ color:var(--volt); }

/* ---------------------------------------------------------------- header */
.site-header{ position:sticky; top:0; z-index:60; background:rgba(255,255,255,.92);
  backdrop-filter:saturate(180%) blur(14px); border-bottom:1px solid var(--line); }
.header-main{ display:flex; align-items:center; gap:1.5rem; height:var(--header-h); }

.logo{ display:inline-flex; align-items:center; gap:.6rem; flex:none; }
.logo-mark{ width:38px; height:38px; border-radius:11px; flex:none;
  background:linear-gradient(135deg,var(--bolt),var(--violet)); display:grid; place-items:center;
  box-shadow:0 4px 14px rgba(59,91,255,.35); }
.logo-mark svg{ width:20px; height:20px; }
.logo-text{ font-family:var(--display); font-size:1.42rem; font-weight:800; letter-spacing:-.04em; color:var(--ink); }
.logo-text i{ color:var(--bolt); font-style:normal; }
.logo-sub{ display:block; font-family:var(--font); font-size:.58rem; font-weight:600; letter-spacing:.18em;
  text-transform:uppercase; color:var(--text-3); margin-top:-4px; }

.nav{ display:flex; align-items:center; gap:.25rem; }
.nav a{ padding:.5rem .8rem; border-radius:8px; font-size:.93rem; font-weight:550; color:var(--text-2);
  transition:color .15s, background .15s; }
.nav a:hover{ color:var(--text); background:var(--bg-2); }
.nav a.is-active{ color:var(--bolt); background:var(--bolt-soft); font-weight:650; }

.search-form{ position:relative; flex:1; max-width:420px; }
.search-form input{
  width:100%; padding:.6rem 2.6rem .6rem 2.4rem; border:1.5px solid var(--line); border-radius:10px;
  background:var(--bg-2); font-size:.9rem; transition:border-color .15s, background .15s;
}
.search-form input:focus{ border-color:var(--bolt); background:#fff; outline:none; box-shadow:var(--ring); }
.search-form .s-icon{ position:absolute; left:.75rem; top:50%; transform:translateY(-50%);
  width:16px; height:16px; color:var(--text-3); pointer-events:none; }
.search-form kbd{ position:absolute; right:.6rem; top:50%; transform:translateY(-50%); font-size:.65rem;
  background:#fff; border:1px solid var(--line); border-radius:5px; padding:.1rem .3rem; color:var(--text-3); }

.header-actions{ display:flex; align-items:center; gap:.35rem; margin-left:auto; }
.icon-btn{
  position:relative; display:grid; place-items:center; width:40px; height:40px; border-radius:10px;
  border:0; background:transparent; color:var(--text-2); transition:background .15s, color .15s;
}
.icon-btn:hover{ background:var(--bg-2); color:var(--text); }
.icon-btn svg{ width:20px; height:20px; }
.icon-btn .count{
  position:absolute; top:3px; right:3px; min-width:17px; height:17px; padding:0 4px;
  background:var(--bolt); color:#fff; border-radius:999px; font-size:.64rem; font-weight:800;
  display:grid; place-items:center; border:2px solid #fff; line-height:1;
}
.icon-btn .count.volt{ background:var(--volt); color:#221a00; }

/* category bar */
.cat-bar{ border-top:1px solid var(--line-2); background:#fff; }
.cat-bar .wrap{ display:flex; align-items:center; gap:.2rem; height:46px; overflow-x:auto; scrollbar-width:none; }
.cat-bar .wrap::-webkit-scrollbar{ display:none; }
.cat-bar a{ display:inline-flex; align-items:center; gap:.4rem; padding:.35rem .75rem; border-radius:8px;
  font-size:.85rem; font-weight:550; color:var(--text-2); white-space:nowrap; }
.cat-bar a:hover{ background:var(--bg-2); color:var(--text); }
.cat-bar a.is-active{ color:var(--bolt); background:var(--bolt-soft); font-weight:650; }
.cat-bar .sep{ width:1px; height:18px; background:var(--line); margin:0 .5rem; flex:none; }
.cat-bar .hot{ color:var(--red); font-weight:650; }

/* mobile nav */
.burger{ display:none; }
.mobile-nav{ display:none; position:fixed; inset:var(--header-h) 0 0; background:#fff; z-index:55; padding:1.5rem 20px;
  overflow-y:auto; border-top:1px solid var(--line); }
.mobile-nav.is-open{ display:block; }
.mobile-nav a{ display:block; padding:.85rem .5rem; border-bottom:1px solid var(--line-2); font-weight:600; }
@media(max-width:960px){
  .nav{ display:none; }
  .burger{ display:grid; }
  .search-form{ max-width:none; }
}
@media(max-width:640px){
  .search-form{ display:none; }
  .search-form.mobile-visible{ display:block; }
}

/* ---------------------------------------------------------------- hero */
.hero{
  position:relative; overflow:hidden; color:#fff;
  background:radial-gradient(1200px 600px at 78% 18%, #26347a 0%, transparent 60%),
             radial-gradient(900px 500px at 12% 85%, #3a1f7a 0%, transparent 55%),
             linear-gradient(160deg,#0b0f1a 0%,#121a30 50%,#0d1424 100%);
}
.hero::before{
  content:''; position:absolute; inset:0; opacity:.35;
  background-image:linear-gradient(rgba(255,255,255,.045) 1px,transparent 1px),
                   linear-gradient(90deg,rgba(255,255,255,.045) 1px,transparent 1px);
  background-size:56px 56px; mask-image:radial-gradient(ellipse 80% 70% at 50% 40%,#000,transparent 75%);
}
.hero-inner{ position:relative; display:grid; grid-template-columns:1.05fr .95fr; gap:3rem;
  align-items:center; padding:72px 0 80px; }
.hero h1{ color:#fff; margin-bottom:1rem; }
.hero h1 em{ font-style:normal; background:linear-gradient(100deg,var(--volt),#ffe98a);
  -webkit-background-clip:text; background-clip:text; color:transparent; }
.hero-lead{ font-size:1.08rem; color:#b8c3dd; max-width:50ch; margin-bottom:1.8rem; }
.hero-eyebrow{ color:var(--volt); }
.hero-eyebrow::before{ background:var(--volt); }
.hero-cta{ display:flex; flex-wrap:wrap; gap:.8rem; margin-bottom:2.5rem; }
.hero-stats{ display:flex; gap:2.5rem; flex-wrap:wrap; padding-top:1.6rem; border-top:1px solid rgba(255,255,255,.12); }
.hero-stat b{ display:block; font-family:var(--display); font-size:1.55rem; font-weight:800; color:#fff; letter-spacing:-.03em; }
.hero-stat span{ font-size:.78rem; color:#8e9ab8; letter-spacing:.04em; }

.hero-art{ position:relative; display:grid; place-items:center; min-height:340px; }
.hero-art .p-art{ width:100%; max-width:520px; filter:drop-shadow(0 30px 60px rgba(0,0,0,.5)); }
.hero-float{
  position:absolute; background:rgba(255,255,255,.07); backdrop-filter:blur(14px);
  border:1px solid rgba(255,255,255,.14); border-radius:14px; padding:.6rem .85rem;
  display:flex; align-items:center; gap:.6rem; font-size:.78rem; color:#e8edf9; white-space:nowrap;
  box-shadow:0 12px 30px rgba(0,0,0,.3);
}
.hero-float b{ display:block; font-size:.9rem; color:#fff; }
.hero-float .fi{ width:30px; height:30px; border-radius:9px; display:grid; place-items:center; flex:none; }
.hero-float-1{ top:8%; left:-4%; animation:float 6s ease-in-out infinite; }
.hero-float-2{ bottom:12%; right:-2%; animation:float 6s ease-in-out infinite 1.5s; }
@keyframes float{ 0%,100%{ transform:translateY(0) } 50%{ transform:translateY(-11px) } }
@media(prefers-reduced-motion:reduce){ .hero-float-1,.hero-float-2{ animation:none } }

@media(max-width:940px){
  .hero-inner{ grid-template-columns:1fr; padding:52px 0 60px; text-align:center; }
  .hero-lead{ margin-inline:auto; }
  .hero-cta,.hero-stats{ justify-content:center; }
  .hero-art{ order:-1; min-height:240px; }
  .hero-float{ display:none; }
}

/* ---------------------------------------------------------------- trust strip */
.trust{ background:var(--ink-2); border-top:1px solid var(--line-dark); }
.trust .wrap{ display:grid; grid-template-columns:repeat(4,1fr); gap:1px; background:var(--line-dark); }
.trust-item{ background:var(--ink-2); padding:1.35rem 1.25rem; display:flex; gap:.85rem; align-items:flex-start; }
.trust-item svg{ width:22px; height:22px; color:var(--volt); flex:none; margin-top:2px; }
.trust-item b{ display:block; color:#fff; font-size:.9rem; font-weight:650; }
.trust-item span{ font-size:.78rem; color:#8e9ab8; line-height:1.5; }
@media(max-width:820px){ .trust .wrap{ grid-template-columns:repeat(2,1fr); } }
@media(max-width:460px){ .trust .wrap{ grid-template-columns:1fr; } }

/* ---------------------------------------------------------------- product card */
.card{ background:#fff; border:1px solid var(--line); border-radius:var(--radius); overflow:hidden; }

.p-card{
  position:relative; display:flex; flex-direction:column; background:#fff;
  border:1px solid var(--line); border-radius:var(--radius); overflow:hidden;
  transition:transform .2s cubic-bezier(.2,.8,.3,1), box-shadow .2s, border-color .2s;
}
.p-card:hover{ transform:translateY(-4px); box-shadow:var(--shadow); border-color:#d6dcea; }
.p-media{
  position:relative; aspect-ratio:4/3; background:linear-gradient(160deg,#f7f9fd,#eef2f9);
  display:grid; place-items:center; overflow:hidden; border-bottom:1px solid var(--line-2);
}
.p-media .p-art, .p-media img{ width:88%; height:88%; object-fit:contain; transition:transform .3s cubic-bezier(.2,.8,.3,1); }
.p-card:hover .p-media .p-art, .p-card:hover .p-media img{ transform:scale(1.06); }

.p-flags{ position:absolute; top:10px; left:10px; display:flex; flex-direction:column; gap:.35rem; z-index:2; }
.p-flag{ padding:.22rem .55rem; border-radius:7px; font-size:.68rem; font-weight:800; letter-spacing:.03em;
  text-transform:uppercase; color:#fff; background:var(--ink); box-shadow:var(--shadow-xs); }
.p-flag.sale{ background:var(--red); }
.p-flag.new{  background:var(--green); }
.p-flag.hot{  background:linear-gradient(90deg,#f97316,#ef4444); }
.p-flag.out{  background:var(--text-3); }

.p-wish{
  position:absolute; top:10px; right:10px; z-index:2; width:34px; height:34px; border-radius:10px;
  border:1px solid var(--line); background:rgba(255,255,255,.92); display:grid; place-items:center;
  color:var(--text-3); transition:all .15s; backdrop-filter:blur(6px);
}
.p-wish:hover{ color:var(--red); border-color:var(--red); }
.p-wish.is-on{ color:#fff; background:var(--red); border-color:var(--red); }
.p-wish svg{ width:16px; height:16px; }

.p-body{ padding:.95rem 1rem 1.05rem; display:flex; flex-direction:column; flex:1; gap:.5rem; }
.p-cat{ font-size:.7rem; font-weight:700; letter-spacing:.09em; text-transform:uppercase; color:var(--text-3); }
.p-name{ font-family:var(--display); font-size:.97rem; font-weight:650; line-height:1.4; letter-spacing:-.015em;
  color:var(--text); display:-webkit-box; -webkit-line-clamp:2; -webkit-box-orient:vertical; overflow:hidden; margin:0; }
.p-card:hover .p-name{ color:var(--bolt); }
.p-rating{ display:flex; align-items:center; gap:.4rem; font-size:.76rem; color:var(--text-3); }
.p-price{ display:flex; align-items:baseline; gap:.5rem; flex-wrap:wrap; margin-top:auto; padding-top:.3rem; }
.p-now{ font-family:var(--display); font-size:1.12rem; font-weight:800; letter-spacing:-.025em; color:var(--text); }
.p-was{ font-size:.83rem; color:var(--text-3); text-decoration:line-through; }
.p-save{ font-size:.72rem; font-weight:700; color:var(--green); }
.p-actions{ display:flex; gap:.45rem; margin-top:.25rem; }
.p-actions .btn{ flex:1; }
.p-stock{ font-size:.74rem; font-weight:600; display:flex; align-items:center; gap:.3rem; }
.p-stock::before{ content:''; width:6px; height:6px; border-radius:50%; background:currentColor; }
.p-stock.in{ color:var(--green); }
.p-stock.low{ color:var(--amber); }
.p-stock.out{ color:var(--red); }

/* stars */
.stars{ display:inline-flex; gap:1.5px; }
.stars .star{ width:12px; height:12px; display:inline-block; background:var(--line);
  -webkit-mask:var(--star-mask) center/contain no-repeat; mask:var(--star-mask) center/contain no-repeat; }
:root{ --star-mask:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2l3.09 6.26L22 9.27l-5 4.87 1.18 6.88L12 17.77l-6.18 3.25L7 14.14 2 9.27l6.91-1.01L12 2z'/%3E%3C/svg%3E"); }
.stars .star.is-full{ background:var(--volt-deep); }
.stars .star.is-half{ background:linear-gradient(90deg,var(--volt-deep) 50%,var(--line) 50%); }
.stars.lg .star{ width:16px; height:16px; }

/* ---------------------------------------------------------------- category cards */
.cat-card{
  position:relative; display:block; padding:1.75rem; border-radius:var(--radius-lg); overflow:hidden;
  background:var(--ink); color:#fff; min-height:230px; transition:transform .22s, box-shadow .22s;
}
.cat-card:hover{ transform:translateY(-4px); box-shadow:var(--shadow-lg); }
.cat-card::after{ content:''; position:absolute; inset:0;
  background:radial-gradient(420px 260px at 85% 90%, var(--cc,#3b5bff) 0%, transparent 65%); opacity:.55; }
.cat-card > *{ position:relative; z-index:1; }
.cat-card .p-art{ position:absolute; right:-8%; bottom:-14%; width:62%; opacity:.9; z-index:0; }
.cat-card h3{ font-size:1.35rem; margin:0 0 .3rem; color:#fff; }
.cat-card p{ font-size:.87rem; color:#b6c1da; max-width:22ch; margin:0 0 1rem; }
.cat-card .count{ font-size:.74rem; font-weight:700; letter-spacing:.08em; text-transform:uppercase; color:var(--volt); }
.cat-card .go{ display:inline-flex; align-items:center; gap:.4rem; font-size:.86rem; font-weight:650;
  color:#fff; margin-top:.5rem; }
.cat-card .go::after{ content:'→'; transition:transform .18s; }
.cat-card:hover .go::after{ transform:translateX(4px); }

/* ---------------------------------------------------------------- promo banner */
.promo{
  position:relative; overflow:hidden; border-radius:var(--radius-lg); padding:2.75rem;
  background:linear-gradient(120deg,var(--bolt) 0%,var(--violet) 100%); color:#fff;
  display:grid; grid-template-columns:1.2fr .8fr; align-items:center; gap:2rem;
}
.promo::before{ content:''; position:absolute; inset:0; opacity:.28;
  background-image:radial-gradient(circle at 20% 20%,rgba(255,255,255,.5) 1px,transparent 1px);
  background-size:26px 26px; }
.promo > *{ position:relative; }
.promo h2{ color:#fff; margin-bottom:.5rem; }
.promo p{ color:rgba(255,255,255,.88); max-width:44ch; }
.promo .p-art{ width:100%; max-width:280px; margin-left:auto; }
.promo-code{ display:inline-flex; align-items:center; gap:.6rem; background:rgba(0,0,0,.22);
  border:1px dashed rgba(255,255,255,.45); border-radius:10px; padding:.5rem .9rem; margin-top:.5rem; }
.promo-code b{ font-family:ui-monospace,monospace; letter-spacing:.1em; font-size:1rem; color:var(--volt); }
@media(max-width:760px){ .promo{ grid-template-columns:1fr; padding:2rem; text-align:center; }
  .promo p{ margin-inline:auto; } .promo .p-art{ display:none; } }

/* ---------------------------------------------------------------- shop layout */
.shop-layout{ display:grid; grid-template-columns:250px 1fr; gap:2rem; align-items:start; }
@media(max-width:900px){ .shop-layout{ grid-template-columns:1fr; } }

.filters{ position:sticky; top:calc(var(--header-h) + 16px); }
.filter-group{ border-bottom:1px solid var(--line-2); padding:1.1rem 0; }
.filter-group:first-child{ padding-top:0; }
.filter-group:last-child{ border-bottom:0; }
.filter-group h4{ font-family:var(--font); font-size:.76rem; font-weight:800; letter-spacing:.1em;
  text-transform:uppercase; color:var(--text-3); margin:0 0 .8rem; }
.filter-opt{ display:flex; align-items:center; gap:.55rem; padding:.28rem 0; font-size:.89rem; cursor:pointer;
  color:var(--text-2); }
.filter-opt:hover{ color:var(--text); }
.filter-opt input{ width:16px; height:16px; accent-color:var(--bolt); flex:none; cursor:pointer; }
.filter-opt .c{ margin-left:auto; font-size:.75rem; color:var(--text-3); }
.price-inputs{ display:flex; align-items:center; gap:.5rem; }
.price-inputs input{ width:100%; padding:.45rem .55rem; border:1.5px solid var(--line); border-radius:8px;
  font-size:.85rem; background:var(--bg-2); }
.price-inputs input:focus{ border-color:var(--bolt); background:#fff; outline:none; }

.shop-toolbar{ display:flex; align-items:center; justify-content:space-between; gap:1rem; flex-wrap:wrap;
  padding-bottom:1.1rem; margin-bottom:1.4rem; border-bottom:1px solid var(--line); }
.chips{ display:flex; flex-wrap:wrap; gap:.4rem; }
.chip{ display:inline-flex; align-items:center; gap:.35rem; padding:.28rem .65rem; border-radius:999px;
  background:var(--bolt-soft); color:var(--bolt-700); font-size:.78rem; font-weight:600; }
.chip a{ opacity:.6; font-weight:800; }
.chip a:hover{ opacity:1; }

.select{ padding:.5rem 2rem .5rem .8rem; border:1.5px solid var(--line); border-radius:9px; background:#fff;
  font-size:.87rem; font-weight:550; cursor:pointer; appearance:none;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2378829c' stroke-width='2.5'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat:no-repeat; background-position:right .55rem center; background-size:14px; }
.select:focus{ border-color:var(--bolt); outline:none; box-shadow:var(--ring); }

/* pagination */
.pager{ display:flex; justify-content:center; align-items:center; gap:.35rem; margin-top:2.5rem; }
.pager a,.pager span{ min-width:38px; height:38px; padding:0 .6rem; display:grid; place-items:center;
  border:1.5px solid var(--line); border-radius:9px; font-size:.88rem; font-weight:600; color:var(--text-2); }
.pager a:hover{ border-color:var(--bolt); color:var(--bolt); }
.pager .is-current{ background:var(--bolt); border-color:var(--bolt); color:#fff; }
.pager .is-disabled{ opacity:.4; pointer-events:none; }

/* empty state */
.empty{ text-align:center; padding:4rem 1.5rem; }
.empty svg{ width:64px; height:64px; margin:0 auto 1.25rem; color:var(--line); }
.empty h3{ margin-bottom:.4rem; }
.empty p{ color:var(--text-2); max-width:42ch; margin-inline:auto; margin-bottom:1.5rem; }

/* ---------------------------------------------------------------- breadcrumbs */
.crumbs{ display:flex; align-items:center; gap:.45rem; font-size:.82rem; color:var(--text-3); padding:1.1rem 0;
  flex-wrap:wrap; }
.crumbs a:hover{ color:var(--bolt); }
.crumbs .sep{ opacity:.5; }
.crumbs .now{ color:var(--text); font-weight:600; }

/* ---------------------------------------------------------------- product detail */
.pd{ display:grid; grid-template-columns:1.05fr .95fr; gap:3rem; align-items:start; padding-bottom:3rem; }
@media(max-width:900px){ .pd{ grid-template-columns:1fr; gap:2rem; } }

.pd-gallery{ position:sticky; top:calc(var(--header-h) + 20px); }
.pd-stage{ position:relative; aspect-ratio:1/1; border-radius:var(--radius-lg); border:1px solid var(--line);
  background:linear-gradient(160deg,#f7f9fd,#e9eef7); display:grid; place-items:center; overflow:hidden; }
.pd-stage .p-art{ width:82%; }
.pd-thumbs{ display:flex; gap:.6rem; margin-top:.8rem; }
.pd-thumb{ width:72px; height:72px; border-radius:11px; border:1.5px solid var(--line); background:var(--bg-2);
  display:grid; place-items:center; overflow:hidden; padding:6px; cursor:pointer; }
.pd-thumb.is-active{ border-color:var(--bolt); box-shadow:var(--ring); }

.pd-brand{ display:inline-flex; align-items:center; gap:.5rem; font-size:.78rem; font-weight:700;
  letter-spacing:.08em; text-transform:uppercase; color:var(--bolt); margin-bottom:.5rem; }
.pd h1{ font-size:clamp(1.5rem,3vw,2.05rem); margin-bottom:.6rem; }
.pd-meta{ display:flex; align-items:center; gap:1rem; flex-wrap:wrap; padding-bottom:1.1rem;
  border-bottom:1px solid var(--line-2); margin-bottom:1.1rem; font-size:.85rem; color:var(--text-2); }
.pd-price{ display:flex; align-items:baseline; gap:.75rem; flex-wrap:wrap; margin-bottom:.35rem; }
.pd-now{ font-family:var(--display); font-size:2.1rem; font-weight:800; letter-spacing:-.04em; }
.pd-was{ font-size:1.05rem; color:var(--text-3); text-decoration:line-through; }
.pd-lead{ color:var(--text-2); font-size:.98rem; margin:1rem 0 1.4rem; }

.qty{ display:inline-flex; align-items:center; border:1.5px solid var(--line); border-radius:10px; overflow:hidden; }
.qty button{ width:40px; height:44px; border:0; background:#fff; color:var(--text-2); font-size:1.1rem;
  transition:background .15s; }
.qty button:hover{ background:var(--bg-2); color:var(--bolt); }
.qty input{ width:52px; height:44px; border:0; border-inline:1.5px solid var(--line); text-align:center;
  font-weight:700; background:#fff; -moz-appearance:textfield; }
.qty input::-webkit-outer-spin-button,.qty input::-webkit-inner-spin-button{ -webkit-appearance:none; margin:0; }

.pd-buy{ display:flex; gap:.7rem; flex-wrap:wrap; margin:1.3rem 0; }
.pd-buy .btn-lg{ flex:1; min-width:180px; }

.pd-assure{ display:grid; grid-template-columns:repeat(2,1fr); gap:.85rem; padding:1.1rem;
  background:var(--bg-2); border:1px solid var(--line-2); border-radius:var(--radius); margin-top:1.3rem; }
.pd-assure div{ display:flex; gap:.6rem; align-items:flex-start; font-size:.82rem; color:var(--text-2); }
.pd-assure svg{ width:18px; height:18px; color:var(--bolt); flex:none; margin-top:1px; }
.pd-assure b{ display:block; color:var(--text); font-size:.85rem; }
@media(max-width:520px){ .pd-assure{ grid-template-columns:1fr; } }

/* tabs */
.tabs{ display:flex; gap:.25rem; border-bottom:1px solid var(--line); margin-bottom:1.8rem; overflow-x:auto; }
.tab{ padding:.75rem 1.1rem; border:0; background:none; font-size:.92rem; font-weight:650; color:var(--text-3);
  border-bottom:2.5px solid transparent; margin-bottom:-1px; white-space:nowrap; transition:color .15s; }
.tab:hover{ color:var(--text); }
.tab.is-active{ color:var(--bolt); border-bottom-color:var(--bolt); }
.tab-panel{ display:none; }
.tab-panel.is-active{ display:block; animation:fadeIn .25s ease; }
@keyframes fadeIn{ from{ opacity:0; transform:translateY(4px) } to{ opacity:1; transform:none } }

.prose{ max-width:70ch; color:var(--text-2); }
.prose p{ margin-bottom:1.1em; }
.prose h3{ color:var(--text); margin-top:1.6em; }

.spec-table{ width:100%; border-collapse:collapse; font-size:.9rem; }
.spec-table tr{ border-bottom:1px solid var(--line-2); }
.spec-table td{ padding:.7rem .5rem; }
.spec-table td:first-child{ color:var(--text-3); font-weight:600; width:38%; }
.spec-table td:last-child{ color:var(--text); font-weight:550; }

/* reviews */
.rev-summary{ display:grid; grid-template-columns:200px 1fr; gap:2.5rem; padding:1.5rem; background:var(--bg-2);
  border-radius:var(--radius); margin-bottom:2rem; }
.rev-score{ text-align:center; }
.rev-score b{ display:block; font-family:var(--display); font-size:3rem; font-weight:800; line-height:1;
  letter-spacing:-.04em; }
.rev-bars{ display:flex; flex-direction:column; gap:.45rem; justify-content:center; }
.rev-bar{ display:flex; align-items:center; gap:.6rem; font-size:.8rem; color:var(--text-2); }
.rev-bar .track{ flex:1; height:7px; background:var(--line); border-radius:99px; overflow:hidden; }
.rev-bar .fill{ height:100%; background:var(--volt-deep); border-radius:99px; }
@media(max-width:640px){ .rev-summary{ grid-template-columns:1fr; gap:1.5rem; } }

.review{ padding:1.25rem 0; border-bottom:1px solid var(--line-2); }
.review-head{ display:flex; align-items:center; gap:.75rem; margin-bottom:.5rem; }
.avatar{ width:38px; height:38px; border-radius:50%; display:grid; place-items:center; font-weight:800;
  font-size:.85rem; color:#fff; background:linear-gradient(135deg,var(--bolt),var(--violet)); flex:none; }
.review h4{ margin:0 0 .25rem; font-size:.95rem; }
.review p{ color:var(--text-2); margin:0; font-size:.92rem; }

/* ---------------------------------------------------------------- forms */
.field{ margin-bottom:1.05rem; }
.field label{ display:block; font-size:.83rem; font-weight:650; margin-bottom:.4rem; color:var(--text); }
.field label .req{ color:var(--red); }
.field .hint{ font-size:.76rem; color:var(--text-3); margin-top:.3rem; }
.input,.field input[type=text],.field input[type=email],.field input[type=password],.field input[type=tel],
.field input[type=number],.field input[type=date],.field select,.field textarea{
  width:100%; padding:.68rem .85rem; border:1.5px solid var(--line); border-radius:10px; background:#fff;
  font-size:.92rem; transition:border-color .15s, box-shadow .15s;
}
.field textarea{ resize:vertical; min-height:110px; }
.field select{ appearance:none; cursor:pointer;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2378829c' stroke-width='2.5'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat:no-repeat; background-position:right .7rem center; background-size:15px; padding-right:2.2rem; }
.input:focus,.field input:focus,.field select:focus,.field textarea:focus{
  border-color:var(--bolt); outline:none; box-shadow:var(--ring); }
.field.has-error input,.field.has-error select,.field.has-error textarea{ border-color:var(--red); }
.err{ display:block; font-size:.78rem; color:var(--red); margin-top:.32rem; font-weight:550; }
.field-row{ display:grid; grid-template-columns:1fr 1fr; gap:1rem; }
@media(max-width:560px){ .field-row{ grid-template-columns:1fr; } }

.check{ display:flex; align-items:flex-start; gap:.6rem; font-size:.88rem; color:var(--text-2); cursor:pointer; }
.check input{ width:17px; height:17px; accent-color:var(--bolt); flex:none; margin-top:2px; cursor:pointer; }

/* radio card (payment / shipping choice) */
.opt-card{ display:flex; gap:.85rem; align-items:flex-start; padding:1rem 1.1rem; border:1.5px solid var(--line);
  border-radius:var(--radius); cursor:pointer; transition:border-color .15s, background .15s; background:#fff; }
.opt-card:hover{ border-color:#c3ccdf; }
.opt-card input{ width:18px; height:18px; accent-color:var(--bolt); flex:none; margin-top:2px; cursor:pointer; }
.opt-card.is-on{ border-color:var(--bolt); background:var(--bolt-soft); box-shadow:var(--ring); }
.opt-card b{ display:block; font-size:.92rem; }
.opt-card span{ font-size:.81rem; color:var(--text-2); }
.opt-card .fee{ margin-left:auto; font-weight:750; font-size:.92rem; white-space:nowrap; }

/* auth pages */
.auth-shell{ display:grid; grid-template-columns:1fr 1fr; min-height:calc(100vh - var(--header-h)); }
.auth-side{ position:relative; overflow:hidden; padding:3.5rem; color:#fff; display:flex; flex-direction:column;
  justify-content:center;
  background:radial-gradient(700px 400px at 70% 20%,#2b3a86 0%,transparent 60%),linear-gradient(160deg,#0b0f1a,#1a1440); }
.auth-side h2{ color:#fff; font-size:2rem; }
.auth-side p{ color:#b6c1da; max-width:38ch; }
.auth-side ul{ list-style:none; padding:0; margin-top:1.5rem; }
.auth-side li{ display:flex; gap:.7rem; align-items:flex-start; margin-bottom:.85rem; color:#cbd4e8; font-size:.9rem; }
.auth-side li svg{ width:18px; height:18px; color:var(--volt); flex:none; margin-top:3px; }
.auth-main{ display:grid; place-items:center; padding:3rem 1.5rem; }
.auth-box{ width:100%; max-width:410px; }
@media(max-width:900px){ .auth-shell{ grid-template-columns:1fr; } .auth-side{ display:none; } }

/* ---------------------------------------------------------------- cart */
.cart-layout{ display:grid; grid-template-columns:1fr 360px; gap:2rem; align-items:start; }
@media(max-width:900px){ .cart-layout{ grid-template-columns:1fr; } }

.cart-row{ display:grid; grid-template-columns:96px 1fr auto; gap:1.1rem; align-items:center;
  padding:1.1rem 0; border-bottom:1px solid var(--line-2); }
.cart-thumb{ width:96px; height:96px; border-radius:11px; background:linear-gradient(160deg,#f7f9fd,#eaeff8);
  border:1px solid var(--line-2); display:grid; place-items:center; overflow:hidden; padding:6px; }
.cart-info h4{ margin:0 0 .2rem; font-size:.95rem; }
.cart-info .p-cat{ margin-bottom:.35rem; }
.cart-line-total{ font-family:var(--display); font-weight:800; font-size:1.05rem; text-align:right; white-space:nowrap; }
.cart-remove{ border:0; background:none; color:var(--text-3); font-size:.78rem; font-weight:600; padding:0; }
.cart-remove:hover{ color:var(--red); }
@media(max-width:600px){
  .cart-row{ grid-template-columns:72px 1fr; }
  .cart-thumb{ width:72px; height:72px; }
  .cart-line-total{ grid-column:2; text-align:left; }
}

.summary{ position:sticky; top:calc(var(--header-h) + 16px); border:1px solid var(--line);
  border-radius:var(--radius); padding:1.35rem; background:#fff; box-shadow:var(--shadow-sm); }
.summary h3{ font-size:1.05rem; margin-bottom:1rem; }
.sum-line{ display:flex; justify-content:space-between; gap:1rem; padding:.42rem 0; font-size:.9rem; color:var(--text-2); }
.sum-line b{ color:var(--text); font-weight:650; }
.sum-line.discount b{ color:var(--green); }
.sum-total{ display:flex; justify-content:space-between; align-items:baseline; gap:1rem; padding-top:.9rem;
  margin-top:.7rem; border-top:1.5px solid var(--line); }
.sum-total span{ font-weight:700; }
.sum-total b{ font-family:var(--display); font-size:1.5rem; font-weight:800; letter-spacing:-.035em; }

.coupon-form{ display:flex; gap:.5rem; margin:1rem 0; }
.coupon-form input{ flex:1; padding:.55rem .75rem; border:1.5px solid var(--line); border-radius:9px;
  font-size:.85rem; text-transform:uppercase; letter-spacing:.05em; }
.coupon-form input:focus{ border-color:var(--bolt); outline:none; }
.coupon-on{ display:flex; align-items:center; gap:.5rem; padding:.6rem .8rem; background:var(--green-bg);
  border-radius:9px; font-size:.83rem; color:var(--green); font-weight:650; margin:1rem 0; }
.coupon-on button{ margin-left:auto; border:0; background:none; color:var(--green); opacity:.7; font-weight:800; }

.ship-meter{ margin:1rem 0; }
.ship-meter .track{ height:6px; background:var(--line); border-radius:99px; overflow:hidden; margin-top:.5rem; }
.ship-meter .fill{ height:100%; background:linear-gradient(90deg,var(--bolt),var(--violet)); border-radius:99px;
  transition:width .4s; }
.ship-meter p{ font-size:.8rem; color:var(--text-2); margin:0; }
.ship-meter b{ color:var(--bolt); }

/* checkout */
.checkout-layout{ display:grid; grid-template-columns:1fr 380px; gap:2.5rem; align-items:start; }
@media(max-width:940px){ .checkout-layout{ grid-template-columns:1fr; } }
.co-step{ margin-bottom:2.25rem; }
.co-step-head{ display:flex; align-items:center; gap:.75rem; margin-bottom:1.1rem; }
.co-step-num{ width:28px; height:28px; border-radius:50%; background:var(--ink); color:#fff;
  display:grid; place-items:center; font-size:.82rem; font-weight:800; flex:none; }
.co-step-head h3{ margin:0; font-size:1.08rem; }

.bank-box{ background:var(--bg-2); border:1px dashed var(--line); border-radius:var(--radius); padding:1.1rem;
  margin-top:.85rem; font-size:.87rem; }
.bank-box dl{ display:grid; grid-template-columns:auto 1fr; gap:.35rem 1rem; margin:.6rem 0 0; }
.bank-box dt{ color:var(--text-3); font-weight:600; }
.bank-box dd{ margin:0; font-weight:650; }

/* order confirmation */
.confirm-hero{ text-align:center; padding:3rem 1.5rem 2rem; }
.confirm-tick{ width:76px; height:76px; border-radius:50%; background:var(--green-bg); color:var(--green);
  display:grid; place-items:center; margin:0 auto 1.25rem; animation:pop .45s cubic-bezier(.2,1.4,.4,1); }
.confirm-tick svg{ width:38px; height:38px; }
@keyframes pop{ from{ transform:scale(.5); opacity:0 } to{ transform:scale(1); opacity:1 } }
.confirm-ref{ display:inline-flex; align-items:center; gap:.6rem; background:var(--ink); color:#fff;
  padding:.6rem 1.1rem; border-radius:10px; font-family:ui-monospace,monospace; font-size:1.05rem;
  font-weight:700; letter-spacing:.08em; margin:.5rem 0 1rem; }

/* order timeline */
.timeline{ display:flex; gap:0; margin:2rem 0; }
.tl-step{ flex:1; text-align:center; position:relative; font-size:.78rem; color:var(--text-3); }
.tl-step::before{ content:''; position:absolute; top:13px; left:-50%; width:100%; height:2px; background:var(--line); }
.tl-step:first-child::before{ display:none; }
.tl-dot{ position:relative; width:28px; height:28px; border-radius:50%; background:#fff;
  border:2px solid var(--line); margin:0 auto .5rem; display:grid; place-items:center; z-index:1; }
.tl-dot svg{ width:13px; height:13px; }
.tl-step.done .tl-dot{ background:var(--green); border-color:var(--green); color:#fff; }
.tl-step.done::before{ background:var(--green); }
.tl-step.done{ color:var(--text); font-weight:600; }
.tl-step.now .tl-dot{ border-color:var(--bolt); background:var(--bolt); color:#fff;
  box-shadow:0 0 0 4px rgba(59,91,255,.18); }
.tl-step.now{ color:var(--bolt); font-weight:700; }

/* ---------------------------------------------------------------- account */
.acct-layout{ display:grid; grid-template-columns:230px 1fr; gap:2rem; align-items:start; }
@media(max-width:820px){ .acct-layout{ grid-template-columns:1fr; } }
.acct-nav{ display:flex; flex-direction:column; gap:2px; }
.acct-nav a{ display:flex; align-items:center; gap:.6rem; padding:.62rem .8rem; border-radius:9px;
  font-size:.9rem; font-weight:600; color:var(--text-2); }
.acct-nav a svg{ width:17px; height:17px; }
.acct-nav a:hover{ background:var(--bg-2); color:var(--text); }
.acct-nav a.is-active{ background:var(--bolt-soft); color:var(--bolt); }
.acct-nav .out{ color:var(--red); margin-top:.5rem; border-top:1px solid var(--line-2); padding-top:.9rem; }

.stat-tiles{ display:grid; grid-template-columns:repeat(auto-fit,minmax(160px,1fr)); gap:1rem; margin-bottom:2rem; }
.tile{ border:1px solid var(--line); border-radius:var(--radius); padding:1.1rem; background:#fff; }
.tile .k{ font-size:.74rem; font-weight:700; letter-spacing:.08em; text-transform:uppercase; color:var(--text-3); }
.tile .v{ font-family:var(--display); font-size:1.7rem; font-weight:800; letter-spacing:-.035em; margin-top:.2rem; }
.tile .d{ font-size:.78rem; color:var(--text-2); }

/* data table */
.table-wrap{ overflow-x:auto; border:1px solid var(--line); border-radius:var(--radius); background:#fff; }
.table{ width:100%; border-collapse:collapse; font-size:.88rem; min-width:600px; }
.table th{ text-align:left; padding:.75rem 1rem; font-size:.72rem; font-weight:800; letter-spacing:.08em;
  text-transform:uppercase; color:var(--text-3); background:var(--bg-2); border-bottom:1px solid var(--line); }
.table td{ padding:.85rem 1rem; border-bottom:1px solid var(--line-2); vertical-align:middle; }
.table tr:last-child td{ border-bottom:0; }
.table tbody tr:hover{ background:var(--bg-2); }
.table .num{ text-align:right; font-variant-numeric:tabular-nums; }

/* ---------------------------------------------------------------- alerts */
.alert{ display:flex; gap:.7rem; align-items:flex-start; padding:.85rem 1.05rem; border-radius:11px;
  font-size:.89rem; margin-bottom:1.2rem; border:1px solid transparent; }
.alert svg{ width:18px; height:18px; flex:none; margin-top:2px; }
.alert-success{ background:var(--green-bg); color:#0d7a3d; border-color:#bfe8d0; }
.alert-error{   background:var(--red-bg);   color:#b91c1c; border-color:#f6cccc; }
.alert-info{    background:var(--blue-bg);  color:#1d4ed8; border-color:#c9dcfd; }
.alert-warn{    background:var(--amber-bg); color:#92620a; border-color:#f3dfb4; }

/* toast */
.toasts{ position:fixed; bottom:20px; right:20px; z-index:200; display:flex; flex-direction:column; gap:.6rem; }
.toast{ display:flex; align-items:center; gap:.7rem; background:var(--ink); color:#fff; padding:.8rem 1.1rem;
  border-radius:11px; box-shadow:var(--shadow-lg); font-size:.88rem; font-weight:550;
  animation:toastIn .3s cubic-bezier(.2,1.2,.4,1); max-width:330px; }
.toast svg{ width:18px; height:18px; color:var(--volt); flex:none; }
.toast.is-out{ animation:toastOut .25s forwards; }
@keyframes toastIn{ from{ transform:translateX(30px); opacity:0 } to{ transform:none; opacity:1 } }
@keyframes toastOut{ to{ transform:translateX(30px); opacity:0 } }
@media(max-width:520px){ .toasts{ left:16px; right:16px; } .toast{ max-width:none; } }

/* ---------------------------------------------------------------- newsletter */
.newsletter{ background:linear-gradient(140deg,var(--ink) 0%,#182347 100%); color:#fff; border-radius:var(--radius-lg);
  padding:3rem; text-align:center; position:relative; overflow:hidden; }
.newsletter::before{ content:'⚡'; position:absolute; font-size:16rem; opacity:.035; top:-3rem; right:1rem;
  line-height:1; pointer-events:none; }
.newsletter h2{ color:#fff; }
.newsletter p{ color:#a9b5d1; max-width:46ch; margin-inline:auto; }
.news-form{ display:flex; gap:.6rem; max-width:440px; margin:1.75rem auto 0; }
.news-form input{ flex:1; padding:.8rem 1rem; border:1.5px solid rgba(255,255,255,.18); border-radius:11px;
  background:rgba(255,255,255,.07); color:#fff; font-size:.92rem; }
.news-form input::placeholder{ color:#7f8db0; }
.news-form input:focus{ border-color:var(--volt); outline:none; background:rgba(255,255,255,.1); }
@media(max-width:520px){ .newsletter{ padding:2rem 1.25rem; } .news-form{ flex-direction:column; } }

/* ---------------------------------------------------------------- footer */
.site-footer{ background:var(--ink); color:#96a2be; font-size:.88rem; margin-top:4rem; }
.footer-top{ display:grid; grid-template-columns:1.5fr repeat(3,1fr) 1.3fr; gap:2.5rem; padding:3.5rem 0 2.5rem; }
.footer-top .logo-text{ color:#fff; }
.footer-brand p{ margin:1rem 0 1.25rem; max-width:34ch; line-height:1.7; }
.footer-col h4{ color:#fff; font-family:var(--font); font-size:.76rem; font-weight:800; letter-spacing:.11em;
  text-transform:uppercase; margin:0 0 1rem; }
.footer-col ul{ list-style:none; padding:0; margin:0; }
.footer-col li{ margin-bottom:.55rem; }
.footer-col a{ color:#96a2be; transition:color .15s; }
.footer-col a:hover{ color:var(--volt); }
.footer-contact li{ display:flex; gap:.6rem; align-items:flex-start; margin-bottom:.8rem; line-height:1.55; }
.footer-contact svg{ width:16px; height:16px; color:var(--bolt); flex:none; margin-top:3px; }

.socials{ display:flex; gap:.5rem; }
.socials a{ width:36px; height:36px; border-radius:10px; background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.09); display:grid; place-items:center; color:#b4bfd8; transition:all .18s; }
.socials a:hover{ background:var(--bolt); border-color:var(--bolt); color:#fff; transform:translateY(-2px); }
.socials svg{ width:17px; height:17px; }

.pay-methods{ display:flex; gap:.4rem; flex-wrap:wrap; margin-top:1rem; }
.pay-chip{ padding:.3rem .6rem; border-radius:7px; background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.09); font-size:.7rem; font-weight:650; color:#b4bfd8; }

.footer-bottom{ border-top:1px solid var(--line-dark); padding:1.35rem 0; display:flex; align-items:center;
  justify-content:space-between; gap:1rem; flex-wrap:wrap; font-size:.82rem; }
.footer-bottom .links{ display:flex; gap:1.25rem; flex-wrap:wrap; }
.footer-bottom a:hover{ color:var(--volt); }

/* ceyMX credit */
.powered{ display:inline-flex; align-items:center; gap:.35rem; color:#7a86a3; }
.powered a{ font-weight:700; color:#c8d2e8; letter-spacing:-.01em; transition:color .15s; }
.powered a:hover{ color:#fff; }
.powered a .mx{ color:#e5484d; }
.powered a:hover .mx{ color:#ff5c61; }

@media(max-width:1000px){ .footer-top{ grid-template-columns:1fr 1fr 1fr; } }
@media(max-width:640px){
  .footer-top{ grid-template-columns:1fr; gap:2rem; padding:2.5rem 0 2rem; }
  .footer-bottom{ flex-direction:column; text-align:center; }
}

/* ---------------------------------------------------------------- page head */
.page-head{ background:linear-gradient(160deg,var(--ink),#182347); color:#fff; padding:2.75rem 0; }
.page-head h1{ color:#fff; margin:0; }
.page-head p{ color:#a9b5d1; max-width:56ch; margin:.6rem 0 0; }
.page-head .crumbs{ padding:0 0 .8rem; color:#7f8db0; }
.page-head .crumbs a:hover{ color:var(--volt); }
.page-head .crumbs .now{ color:#dbe3f4; }

/* whatsapp float */
.wa-float{ position:fixed; bottom:22px; left:22px; z-index:90; width:52px; height:52px; border-radius:50%;
  background:#25d366; color:#fff; display:grid; place-items:center; box-shadow:0 8px 26px rgba(37,211,102,.4);
  transition:transform .2s; }
.wa-float:hover{ transform:scale(1.08); }
.wa-float svg{ width:26px; height:26px; }
@media(max-width:520px){ .wa-float{ width:46px; height:46px; bottom:16px; left:16px; } }

/* utilities */
.skeleton{ background:linear-gradient(90deg,var(--bg-3) 25%,#f8fafd 50%,var(--bg-3) 75%);
  background-size:200% 100%; animation:shimmer 1.4s infinite; border-radius:8px; }
@keyframes shimmer{ to{ background-position:-200% 0 } }
.divider{ height:1px; background:var(--line); margin:2rem 0; }
.sr-only{ position:absolute; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden;
  clip:rect(0,0,0,0); white-space:nowrap; border:0; }

@media print{
  .site-header,.site-footer,.cat-bar,.announce,.wa-float,.no-print{ display:none !important; }
  body{ font-size:12px; } .wrap{ max-width:none; }
}
