@import url('https://fonts.googleapis.com/css2?family=Kanit:wght@300;400;500;600;700&display=swap');

:root{
  --bg:#10070e;
  --panel:#180b14;
  --panel2:#21101a;
  --line:#8c472d;
  --orange:#ff6828;
  --orange2:#ff8a42;
  --text:#f7edf2;
  --muted:#a999a3;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  background:
    radial-gradient(circle at 50% -10%,rgba(255,88,36,.09),transparent 35%),
    linear-gradient(180deg,#120811 0%,#0d060b 100%);
  color:var(--text);
  font-family:'Kanit',sans-serif;
}
a{text-decoration:none;color:inherit}
.topbar{
  position:sticky;top:0;z-index:20;
  background:rgba(17,8,15,.94);
  border-bottom:1px solid #28131e;
  box-shadow:0 8px 30px rgba(0,0,0,.28);
  backdrop-filter:blur(12px);
}
.nav-wrap{
  max-width:1180px;margin:auto;height:72px;
  display:flex;align-items:center;gap:34px;padding:0 20px;
}
.brand{display:flex;align-items:center;gap:11px;font-size:14px;font-weight:600;white-space:nowrap}
.brand-mark{
  width:36px;height:36px;border-radius:50%;display:grid;place-items:center;
  border:3px solid var(--orange);color:#fff;font-size:20px;
  box-shadow:0 0 16px rgba(255,104,40,.35);
}
nav{display:flex;gap:30px;margin-left:auto}
nav a{font-size:13px;color:#e7dce1;transition:.2s}
nav a:hover{color:var(--orange2)}
.login-btn,.hero-btn{
  border:1px solid var(--orange);color:#fff;background:rgba(255,88,36,.06);
  border-radius:5px;padding:9px 20px;font-family:inherit;cursor:pointer;
  box-shadow:0 0 12px rgba(255,104,40,.18) inset,0 0 12px rgba(255,104,40,.12);
}
.page{max-width:1180px;margin:auto;padding:0 20px 70px}
.ticker{
  margin-top:10px;border:1px solid var(--orange);border-radius:7px;height:70px;
  display:flex;align-items:center;overflow:hidden;background:#190b13;
  box-shadow:0 0 18px rgba(255,104,40,.12);
}
.ticker-label{padding:0 18px;color:var(--orange2);font-weight:600}
.ticker-track{display:flex;gap:44px;white-space:nowrap;font-size:12px;animation:marquee 22s linear infinite}
@keyframes marquee{from{transform:translateX(10%)}to{transform:translateX(-60%)}}

.hero{
  min-height:270px;display:flex;align-items:center;justify-content:space-between;
  padding:30px 48px;margin:20px 0;border:1px solid #3b1d29;border-radius:10px;
  background:linear-gradient(100deg,rgba(31,14,23,.95),rgba(17,7,13,.65));
  overflow:hidden;position:relative;
}
.hero:after{content:"";position:absolute;width:400px;height:400px;right:-150px;top:-180px;background:radial-gradient(circle,rgba(255,104,40,.18),transparent 68%)}
.eyebrow{font-size:11px;letter-spacing:3px;color:var(--orange2);margin:0 0 5px}
.hero h1{font-size:40px;line-height:1.12;margin:0 0 12px;font-weight:600}
.hero h1 span{color:var(--orange2)}
.hero-copy{color:var(--muted);max-width:520px;font-size:14px;margin-bottom:22px}
.hero-orb{
  width:190px;height:190px;border-radius:50%;display:grid;place-items:center;
  background:radial-gradient(circle,#ff7937 0 7%,#632816 20%,#241016 58%,transparent 60%);
  filter:drop-shadow(0 0 25px rgba(255,104,40,.25));
}
.orb-core{width:92px;height:92px;border-radius:50%;display:grid;place-items:center;background:#11070c;border:2px solid #ff7131;font-size:27px;font-weight:700}
.orb-core span{font-size:12px;color:var(--orange2);margin-left:2px}

.products-section{padding-top:10px}
.section-head{display:flex;align-items:end;justify-content:space-between;margin:22px 0 14px}
.section-head h2{margin:0;font-size:25px}
.filters{display:flex;gap:7px;flex-wrap:wrap}
.filter{font-family:inherit;color:#bcaeb5;background:#160a11;border:1px solid #4d2834;padding:6px 13px;border-radius:4px;cursor:pointer}
.filter.active,.filter:hover{border-color:var(--orange);color:#fff}
.product-grid{
  display:grid;grid-template-columns:repeat(6,1fr);gap:18px;
}
.card{
  min-width:0;border:1px solid #633127;border-radius:7px;padding:9px 8px 10px;
  background:linear-gradient(180deg,#211019,#170a12);
  box-shadow:0 5px 15px rgba(0,0,0,.2),0 0 10px rgba(255,104,40,.05);
  transition:transform .2s,border-color .2s,box-shadow .2s;
  text-align:center;
}
.card:hover{transform:translateY(-4px);border-color:var(--orange);box-shadow:0 8px 25px rgba(0,0,0,.35),0 0 18px rgba(255,104,40,.13)}
.icon{
  height:76px;border-radius:12px;margin-bottom:9px;display:grid;place-items:center;
  font-weight:700;font-size:28px;background:#0e080c;border:1px solid #26151b;
  overflow:hidden;line-height:.82;
}
.card h3{font-size:11px;margin:0 0 3px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.card p{font-size:9px;color:#988890;margin:0 0 8px}
.card button{
  width:100%;font-family:inherit;font-size:10px;color:#fff;background:transparent;
  border:1px solid #c65a37;border-radius:3px;padding:4px;cursor:pointer;
}
.card button:hover{background:var(--orange);border-color:var(--orange)}
.netflix{color:#e50914;font-size:48px}.youtube{color:#ff1c1c}.gemini{color:#b9c8ff;background:linear-gradient(135deg,#201d3a,#131018)}
.disney{color:#b8d4ff;background:#071746}.viu{color:#ffd34c}.iqiyi{color:#52ff1b}.wetv{color:#fff;background:#f5f5f5}.ch3{color:#fff;background:#2e3033}
.bein{color:#fff;background:#5b257a}.hbo{color:#fff;background:#081a63}.prime{color:#fff;background:#10213c}.oned{color:#fff;background:#111;border:2px solid #ff1493}
.lala{color:#9bd34b}.bugaboo{color:#fff;background:#3164c6}.monomax{color:#fff}.trueid{color:#fff;background:#ef1620}.bili{color:#fff;background:#55bde8}
.youku{color:#ff517d;background:#fff;font-size:18px}.spotify{color:#1ed760}.soundcloud{color:#ff6d00;background:#ff6d0012}.apple{color:#fff;background:#ef2e49}.capcut{color:#fff}.metu{color:#fff;background:#ff4d88}.hub{color:var(--orange2)}

.chat-fab{
  position:fixed;right:22px;bottom:22px;width:46px;height:46px;border-radius:50%;
  background:#ff8a17;color:#fff;border:3px solid #171016;box-shadow:0 0 0 2px #ff8a17,0 0 25px rgba(255,138,23,.4);
  cursor:pointer;font-size:20px;z-index:30;
}
.modal{display:none;position:fixed;inset:0;background:rgba(0,0,0,.7);z-index:50;place-items:center}
.modal.show{display:grid}
.modal-box{position:relative;width:min(390px,92vw);padding:28px;border:1px solid var(--orange);border-radius:10px;background:#1a0b14;box-shadow:0 15px 50px #000}
.modal-box h2{margin:0 0 20px}.modal-box input{width:100%;padding:11px;margin:6px 0;background:#0f070c;border:1px solid #4e2935;border-radius:5px;color:#fff;font-family:inherit}
.submit{width:100%;margin-top:10px;padding:11px;border:1px solid var(--orange);background:var(--orange);color:#fff;border-radius:5px;font-family:inherit;cursor:pointer}
.close{position:absolute;right:12px;top:8px;background:none;border:0;color:#aaa;font-size:27px;cursor:pointer}

@media(max-width:1050px){.product-grid{grid-template-columns:repeat(4,1fr)}nav{gap:15px}}
@media(max-width:760px){
  .nav-wrap{height:auto;min-height:64px;flex-wrap:wrap;padding:10px 14px;gap:12px}
  nav{order:3;width:100%;overflow:auto;justify-content:flex-start;padding-bottom:5px}
  .hero{padding:28px 22px}.hero-orb{display:none}.hero h1{font-size:31px}
  .section-head{align-items:flex-start;gap:12px;flex-direction:column}
  .product-grid{grid-template-columns:repeat(2,1fr);gap:11px}
  .ticker{height:58px}.ticker-label{display:none}.ticker-track{gap:25px}
}
@media(max-width:420px){.product-grid{grid-template-columns:repeat(2,1fr)}.page{padding:0 10px 60px}.card{padding:7px}.icon{height:66px}}
.nav-user{display:flex;align-items:center;gap:10px;font-size:12px;color:#ffb18d}.flash{padding:11px 15px;margin:12px 0;border-radius:6px;border:1px solid #6d3b2b;background:#1c0d15}.flash.success{border-color:#3c8d55}.flash.error{border-color:#b33b3b}.panel{border:1px solid #542b32;background:#180b13;border-radius:8px;padding:20px;margin:18px 0}.form-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:12px}.form-group{display:flex;flex-direction:column;gap:5px}.form-group.full{grid-column:1/-1}.form-group input,.form-group select,.form-group textarea{background:#0f070c;border:1px solid #4e2935;color:#fff;border-radius:5px;padding:10px;font-family:inherit}.btn{display:inline-block;border:1px solid var(--orange);background:transparent;color:#fff;padding:8px 14px;border-radius:4px;font-family:inherit;cursor:pointer}.btn.primary{background:var(--orange)}.btn.danger{border-color:#c33;background:#3a1015}.table-wrap{overflow:auto}.table{width:100%;border-collapse:collapse}.table th,.table td{padding:10px;border-bottom:1px solid #35202a;text-align:left;font-size:12px}.badge{padding:3px 7px;border-radius:10px;background:#3a1a22;font-size:10px}.badge.success{background:#163b26}.badge.pending{background:#49321b}.badge.failed{background:#4a171b}.stat-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:12px}.stat{padding:18px;border:1px solid #542b32;border-radius:8px;background:#180b13}.stat b{display:block;font-size:24px;color:#ff9a69}.auth{max-width:450px;margin:50px auto}.auth h1{margin-top:0}.price{font-size:15px;color:#ff9a69}.product-actions{display:flex;gap:7px;align-items:center}.product-actions input{width:70px;background:#0f070c;border:1px solid #4e2935;color:#fff;padding:7px;border-radius:4px}.admin-nav{display:flex;gap:8px;flex-wrap:wrap}.admin-nav a{border:1px solid #542b32;padding:7px 11px;border-radius:4px;font-size:12px}.admin-nav a:hover{border-color:var(--orange)}@media(max-width:800px){.form-grid,.stat-grid{grid-template-columns:1fr}.nav-wrap{flex-wrap:wrap}.nav-user{margin-left:auto}}

/* Multi-page marketplace layer */
.subnav{background:#0e070d;border-bottom:1px solid #321b26}.subnav-inner{max-width:1180px;margin:auto;padding:7px 20px;display:flex;gap:18px;overflow:auto}.subnav a{font-size:11px;color:#a99aa2;white-space:nowrap}.subnav a:hover{color:#ff8145}
.category-hero{display:flex;align-items:center;gap:22px;margin:20px 0;padding:25px 28px;border:1px solid #633127;border-radius:9px;background:linear-gradient(110deg,#21101a,#13080e);box-shadow:0 10px 30px #0004}.category-hero.compact{padding:20px 28px}.category-hero h1{margin:0;font-size:30px}.category-hero p{margin:4px 0 0;color:#a99aa2;font-size:13px}.category-symbol{width:72px;height:72px;display:grid;place-items:center;border-radius:18px;background:#0e080c;border:1px solid #ff6b34;color:#ff8b4d;font-size:31px;box-shadow:0 0 25px #ff6b3420}
.section-block{margin:24px 0}.section-title{display:flex;align-items:end;justify-content:space-between;margin-bottom:14px}.section-title h2{margin:0;font-size:22px}.small-btn{border:1px solid #8f442c;border-radius:4px;padding:6px 12px;font-size:11px}.product-grid{display:grid;grid-template-columns:repeat(6,minmax(0,1fr));gap:14px}.product-card{border:1px solid #633127;border-radius:7px;background:linear-gradient(180deg,#211019,#160a11);padding:9px;text-align:center;transition:.2s}.product-card:hover{transform:translateY(-3px);border-color:#ff6b34;box-shadow:0 10px 25px #0007}.product-icon{height:86px;border-radius:11px;display:grid;place-items:center;background:#0c080c;border:1px solid #2c171f;margin-bottom:8px;overflow:hidden}.product-icon span{font-size:26px;font-weight:700;color:#f5e9ef}.product-icon.ai{background:linear-gradient(145deg,#171632,#0b0a12)}.product-icon.social{background:linear-gradient(145deg,#111b2c,#09080d)}.product-icon.game{background:linear-gradient(145deg,#25170e,#0e0908)}.product-icon.card{background:linear-gradient(145deg,#1b152b,#0d0914)}.product-icon.app{background:linear-gradient(145deg,#14251f,#090c0a)}.product-icon.otp{background:linear-gradient(145deg,#29150d,#0e0908)}.product-icon.service{background:linear-gradient(145deg,#28101a,#0d080d)}.product-icon.music{background:linear-gradient(145deg,#152516,#090b09)}.product-icon.creator{background:linear-gradient(145deg,#29152b,#0d080f)}.product-card h3{font-size:11px;margin:0 0 3px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.product-card p{font-size:9px;color:#998a92;height:18px;margin:0 0 7px;overflow:hidden}.price-row{display:flex;justify-content:space-between;align-items:center;font-size:9px;margin-bottom:7px}.price-row strong{font-size:12px;color:#ff9a65}.price-row span{color:#70e4a5}.buy-btn{display:block;border:1px solid #bd5937;border-radius:3px;padding:4px;color:#fff;font-size:10px}.buy-btn:hover{background:#ff6b34}.dashboard-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:15px}.stat-card{padding:20px;border:1px solid #633127;border-radius:8px;background:#1b0c15;display:flex;flex-direction:column;gap:5px}.stat-card span,.stat-card small{color:#9e9098;font-size:11px}.stat-card strong{font-size:24px}.stat-card a{color:#ff8b4d;font-size:11px}.quick-links{display:grid;grid-template-columns:repeat(4,1fr);gap:10px;margin-top:18px}.quick-links a{padding:14px;border:1px solid #4d2833;border-radius:6px;background:#170a11;color:#ddd;font-size:12px}@media(max-width:1050px){.product-grid{grid-template-columns:repeat(4,1fr)}}@media(max-width:700px){.product-grid{grid-template-columns:repeat(2,1fr)}.dashboard-grid,.quick-links{grid-template-columns:1fr}.category-hero{padding:18px}.category-symbol{width:58px;height:58px}}

.muted{color:#9e9098;font-size:12px}

/* Screenshot-style dense catalog */
.category-hero{min-height:145px}
.product-grid{grid-template-columns:repeat(6,minmax(0,1fr));gap:12px}
.product-card{min-height:175px}
.product-icon{height:78px}
.section-block{margin-top:28px}
.section-title{padding-bottom:8px;border-bottom:1px solid #4d252d}
.section-title:after{content:"";position:absolute}
.category-hero + .section-block{margin-top:20px}
.category-hero{box-shadow:0 0 22px rgba(255,103,45,.07)}
@media(max-width:1050px){.product-grid{grid-template-columns:repeat(4,minmax(0,1fr))}}
@media(max-width:700px){.product-grid{grid-template-columns:repeat(2,minmax(0,1fr));gap:9px}.product-icon{height:68px}}
.product-marquee{height:62px;margin-bottom:12px}.ticker-product{display:flex;align-items:center;gap:7px;padding:7px 12px;border-right:1px solid #4c2530;min-width:max-content}.ticker-product img{width:24px;height:24px;object-fit:contain;background:#fff0;border-radius:5px}.ticker-product span{font-size:10px;color:#ddd}.ticker-product b{font-size:10px;color:#ff9a65}.ticker-track{animation-duration:32s}.main-hero{min-height:285px}.hero-actions{display:flex;gap:9px;align-items:center}.hero-art{width:480px;border:1px solid #4c2730;border-radius:10px;overflow:hidden;box-shadow:0 0 30px #ff6b3418}.hero-art img{display:block;width:100%;height:auto}.category-section{margin-top:30px}.section-banner{border:1px solid #4d2833;border-radius:7px;overflow:hidden;margin:0 0 13px;background:#14090f}.section-banner img{display:block;width:100%;height:auto}.product-visual{height:88px;border-radius:11px;display:grid;place-items:center;background:#0b070b;border:1px solid #2b171e;margin-bottom:8px;overflow:hidden}.product-visual img{width:58px;height:58px;object-fit:contain}.logo-fallback{font-size:26px;font-weight:700;color:#fff;place-items:center}.details-btn{display:inline-block;border:1px solid #684052;color:#d6c8cf;padding:4px 7px;border-radius:3px;font-size:9px}.product-actions{display:flex;gap:5px}.product-actions .buy-btn{flex:1}.product-detail{display:grid;grid-template-columns:420px 1fr;gap:28px;margin:28px 0}.detail-media{padding:20px;border:1px solid #633127;border-radius:10px;background:linear-gradient(145deg,#21101a,#10070d)}.detail-logo{height:330px;border-radius:14px;display:grid;place-items:center;background:radial-gradient(circle,#3b1b20,#0b070b 70%);border:1px solid #3e222a}.detail-logo img{width:190px;height:190px;object-fit:contain}.detail-logo span{font-size:70px;font-weight:700;color:#fff}.detail-badges{display:flex;gap:7px;margin-top:10px;flex-wrap:wrap}.detail-badges span{padding:6px 9px;border-radius:4px;border:1px solid #4d3037;color:#bdaeb6;font-size:10px}.detail-info{padding:18px 4px}.detail-info h1{font-size:36px;margin:3px 0 8px}.detail-desc{color:#a99aa2;line-height:1.8}.detail-price{font-size:31px;color:#ff9b68;font-weight:700;margin:18px 0}.detail-meta{display:grid;grid-template-columns:repeat(3,1fr);gap:8px}.detail-meta div{padding:12px;border:1px solid #4d2833;border-radius:6px;background:#170a11}.detail-meta small,.detail-meta b{display:block}.detail-meta small{font-size:9px;color:#94858d}.detail-meta b{font-size:11px;margin-top:4px}.detail-buy{display:flex;gap:8px;margin-top:18px}.big{padding:10px 16px;font-size:12px}.detail-panel{padding:20px;border:1px solid #4d2833;border-radius:8px;background:#170a11;color:#c4b7be;line-height:1.9}.detail-panel li{margin:7px 0}.category-section .product-grid{margin-bottom:3px}@media(max-width:850px){.hero-art{display:none}.product-detail{grid-template-columns:1fr}.detail-logo{height:230px}.detail-meta{grid-template-columns:1fr 1fr}.main-hero{min-height:220px}}@media(max-width:560px){.detail-meta{grid-template-columns:1fr}.detail-buy{flex-direction:column}.product-actions{flex-direction:column}.details-btn,.product-actions .buy-btn{text-align:center;width:100%}}

.api-result{margin-top:20px;padding:18px;background:#0b070a;border:1px solid #4d252d;border-radius:8px;color:#e8dfe4;white-space:pre-wrap;overflow:auto;max-height:520px}.quick-card .btn{margin-top:12px;cursor:pointer}


/* =========================================================
   RED GLASS / BLACK GLASS THEME — final visual layer
   ========================================================= */
:root{
  --bg:#020303;
  --panel:rgba(8,8,9,.78);
  --panel2:rgba(14,14,16,.72);
  --line:#5f1118;
  --red:#ff1f2d;
  --red2:#ff4a4a;
  --red3:#ff101c;
  --text:#f7f7f8;
  --muted:#9d9da4;
}
html,body{background:#020303!important}
body{
  background:
    radial-gradient(900px 420px at 50% -120px,rgba(255,20,35,.13),transparent 60%),
    radial-gradient(700px 520px at 100% 35%,rgba(255,0,20,.045),transparent 62%),
    linear-gradient(180deg,#030303 0%,#000 100%)!important;
}
body:before{content:"";position:fixed;inset:0;pointer-events:none;z-index:-1;background:linear-gradient(115deg,rgba(255,255,255,.018),transparent 28%,rgba(255,0,30,.018) 72%,transparent);}
.topbar,.subnav{background:rgba(3,3,4,.78)!important;border-color:rgba(255,25,40,.22)!important;backdrop-filter:blur(18px) saturate(135%);box-shadow:0 12px 38px rgba(0,0,0,.55),0 0 24px rgba(255,20,35,.04)!important}
.brand-mark{border-color:var(--red)!important;box-shadow:0 0 16px rgba(255,20,35,.45)!important}
nav a:hover,.subnav a:hover{color:#ff3945!important}
.login-btn,.hero-btn,.btn{border-color:var(--red)!important;background:linear-gradient(180deg,rgba(255,35,50,.12),rgba(255,0,20,.025))!important;box-shadow:inset 0 0 14px rgba(255,20,35,.12),0 0 14px rgba(255,20,35,.18)!important}
.page{max-width:1320px}
.ticker,.product-marquee{background:rgba(6,6,7,.70)!important;border-color:rgba(255,30,45,.82)!important;box-shadow:0 0 24px rgba(255,20,35,.14),inset 0 0 28px rgba(255,20,35,.035)!important;backdrop-filter:blur(16px)}
.hero,.category-hero,.detail-media,.detail-panel,.stat-card,.quick-card,.card,.product-card,.section-banner,.modal-box{
  background:linear-gradient(145deg,rgba(18,18,20,.78),rgba(3,3,4,.76))!important;
  border-color:rgba(255,34,48,.58)!important;
  box-shadow:inset 0 1px 0 rgba(255,255,255,.045),inset 0 0 30px rgba(255,0,20,.025),0 8px 30px rgba(0,0,0,.55),0 0 16px rgba(255,20,35,.07)!important;
  backdrop-filter:blur(16px) saturate(125%);
}
.hero:after{background:radial-gradient(circle,rgba(255,20,35,.20),transparent 68%)!important}
.eyebrow,.price,.price-row strong,.detail-price{color:#ff3c47!important}
.section-title{border-bottom-color:rgba(255,35,48,.42)!important}
.section-title h2,.section-head h1,.category-hero h1,.detail-info h1{color:#fff;text-shadow:0 0 18px rgba(255,20,35,.12)}
.filter{background:rgba(5,5,6,.74)!important;border-color:#42161c!important}
.filter.active,.filter:hover{border-color:var(--red)!important;box-shadow:0 0 12px rgba(255,20,35,.15)}
.product-grid{gap:14px}
.product-card{position:relative;overflow:hidden}
.product-card:before,.card:before{content:"";position:absolute;inset:0;border-radius:inherit;pointer-events:none;background:linear-gradient(125deg,rgba(255,255,255,.045),transparent 24%,transparent 70%,rgba(255,20,35,.035));}
.product-card:hover,.card:hover{transform:translateY(-4px)!important;border-color:#ff2433!important;box-shadow:inset 0 1px 0 rgba(255,255,255,.055),0 14px 35px rgba(0,0,0,.65),0 0 25px rgba(255,20,35,.18)!important}
.product-visual,.product-icon,.icon,.detail-logo{background:linear-gradient(145deg,#151517,#050506)!important;border-color:rgba(255,255,255,.12)!important;box-shadow:inset 0 0 24px rgba(255,255,255,.025),inset 0 0 22px rgba(255,20,35,.035)}
.product-visual{height:96px;position:relative}
.product-visual img{width:72px!important;height:72px!important;object-fit:contain;display:block;filter:drop-shadow(0 0 8px rgba(255,255,255,.08))}
.product-visual:after{content:"";position:absolute;inset:auto 10px 5px;height:1px;background:linear-gradient(90deg,transparent,rgba(255,25,40,.45),transparent)}
.logo-fallback{font-size:25px!important;color:#fff!important;text-shadow:0 0 12px rgba(255,25,40,.25)}
.product-card h3{color:#f4f4f5!important}.product-card p{color:#9d9da4!important}
.details-btn,.buy-btn,.small-btn{border-color:rgba(255,40,52,.78)!important;background:rgba(255,20,35,.035)!important}
.buy-btn:hover,.small-btn:hover{background:linear-gradient(180deg,#ff2634,#b90816)!important;border-color:#ff5961!important;box-shadow:0 0 16px rgba(255,20,35,.25)}
.product-actions .buy-btn{color:#fff!important}
.chat-fab{background:#ff1d2c!important;border-color:#080808!important;box-shadow:0 0 0 2px #ff1d2c,0 0 25px rgba(255,20,35,.45)!important}
.section-banner img{filter:saturate(.95) contrast(1.04);}
.api-result{background:#030303!important;border-color:#4c141a!important}

/* Glass side/navigation cards for dashboard-like pages */
.dashboard-grid,.quick-links{gap:14px}
.quick-links a,.admin-nav a{background:rgba(10,10,11,.72)!important;border-color:#42151b!important;box-shadow:inset 0 0 20px rgba(255,20,35,.025)}

@media(max-width:700px){.product-grid{gap:10px}.product-visual{height:78px}.product-visual img{width:58px!important;height:58px!important}}

.brand small{display:block;font-size:8px;letter-spacing:1.5px;color:#9f9fa6;font-weight:400;margin-top:-2px}.brand strong{color:#ff3440}.product-card .product-actions{position:relative;z-index:2}.product-card a{position:relative;z-index:2}
