:root {
    --bg: #080c16; --bg-card: #0e1422; --bg-bar: #0d1321;
    --border: #1a2240; --text: #fff; --text-dim: #8892b0;
    --purple: #7c3aed; --purple-glow: #a78bfa; --cyan: #06b6d4;
    --hot-bg: #7c3aed; --hot-text: #fbbf24; --verified: #3b82f6;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
body {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    background: var(--bg); color: var(--text); font-size: 15px;
    line-height: 1.5; min-height: 100vh;
    background-image: radial-gradient(circle, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 24px 24px;
}
.header {
    background: rgba(8,12,22,0.95); border-bottom: 1px solid var(--border);
    position: sticky; top: 0; z-index: 100; backdrop-filter: blur(12px); padding: 0 20px;
}
.header-inner {
    max-width: 1200px; margin: 0 auto; display: flex;
    justify-content: space-between; align-items: center; height: 56px;
}
.logo { font-size: 1.2em; font-weight: 800; color: #fff; text-decoration: none; letter-spacing: -0.5px; display: flex; align-items: center; gap: 4px; }
.logo-icon { font-size: 0.9em; }
.logo-highlight { background: linear-gradient(135deg, var(--purple), var(--cyan)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.nav-links { display: flex; gap: 4px; align-items: center; }
.nav-links a { color: var(--text-dim); text-decoration: none; font-size: 0.7em; font-weight: 700; letter-spacing: 0.5px; padding: 6px 12px; border-radius: 6px; }
.nav-links a:hover { color: #fff; background: rgba(255,255,255,0.05); }
.nav-hot { color: var(--hot-text) !important; }
.btn-wa { border: 1px solid var(--cyan) !important; color: var(--cyan) !important; padding: 6px 14px !important; font-size: 0.68em !important; }
.agent-bar { background: var(--bg-bar); border-bottom: 1px solid var(--border); padding: 14px 20px; }
.agent-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.agent-avatar { font-size: 1.4em; background: rgba(6,182,212,0.1); width: 38px; height: 38px; border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; border: 1px solid rgba(6,182,212,0.2); }
.agent-info { display: flex; align-items: center; gap: 6px; }
.agent-info strong { font-size: 0.85em; }
.verified-badge { font-size: 0.6em; color: var(--verified); border: 1px solid var(--verified); padding: 2px 7px; border-radius: 3px; font-weight: 700; }
.agent-msg { font-size: 0.68em; color: var(--text-dim); flex-basis: 100%; margin-top: 2px; }
.hero { padding: 36px 20px 10px; text-align: center; }
.hero-content { max-width: 600px; margin: 0 auto; }
.hero h1 { font-size: 1.8em; font-weight: 900; letter-spacing: -0.5px; text-transform: uppercase; }
.hero-glow { background: linear-gradient(135deg, var(--purple), var(--cyan)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero p { color: var(--text-dim); font-size: 0.82em; margin-top: 6px; }
.main-content { max-width: 1200px; margin: 0 auto; padding: 0 20px 40px; }
.cat-section { margin-bottom: 36px; }
.cat-header { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 14px; border-bottom: 1px solid var(--border); padding-bottom: 8px; }
.cat-header h2 { font-size: 1.1em; font-weight: 800; letter-spacing: 1px; text-transform: uppercase; }
.cat-count { font-size: 0.7em; color: var(--text-dim); }
.product-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px; }
.prod-card {
    background: var(--bg-card); border-radius: 10px; overflow: hidden;
    text-decoration: none; color: var(--text); border: 1px solid transparent;
    position: relative; transition: transform 0.2s, border-color 0.2s;
}
.prod-card:hover { transform: translateY(-3px); border-color: var(--purple); box-shadow: 0 6px 24px rgba(124,58,237,0.2); }
.badge-hot { position: absolute; top: 6px; right: 6px; background: var(--hot-bg); color: var(--hot-text); font-size: 0.5em; font-weight: 800; padding: 2px 6px; border-radius: 4px; z-index: 2; }
.prod-artwork {
    aspect-ratio: 1; display: flex; align-items: center; justify-content: center;
    padding: 16px; background: linear-gradient(135deg, #0f1729, #0d1424, #111827);
    border-bottom: 1px solid rgba(255,255,255,0.04);
}
.prod-img { width: 100%; height: 100%; object-fit: contain; border-radius: 8px; }
.prod-emoji { font-size: 2.6em; filter: drop-shadow(0 0 10px rgba(255,255,255,0.1)); }
.prod-label {
    padding: 10px 8px 12px; font-size: 0.6em; font-weight: 700;
    text-align: center; letter-spacing: 0.3px; color: var(--text-dim);
    background: rgba(0,0,0,0.2); white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.footer { border-top: 1px solid var(--border); padding: 20px; text-align: center; }
.footer-inner p { font-size: 0.7em; color: var(--text-dim); margin-bottom: 3px; }
@media (max-width: 900px) {
    .product-grid { grid-template-columns: repeat(4, 1fr); gap: 10px; }
    .prod-artwork { padding: 14px; }
    .prod-label { font-size: 0.56em; }
}
@media (max-width: 600px) {
    .header-inner { height: 48px; }
    .logo { font-size: 1em; }
    .nav-links a { font-size: 0.6em; padding: 4px 8px; }
    .hero { padding: 24px 14px 8px; }
    .hero h1 { font-size: 1.15em; }
    .agent-msg { font-size: 0.62em; }
    .product-grid { grid-template-columns: repeat(3, 1fr); gap: 8px; }
    .prod-card { border-radius: 8px; }
    .prod-artwork { padding: 10px; }
    .prod-label { font-size: 0.5em; padding: 8px 6px 10px; }
    .badge-hot { font-size: 0.45em; top: 4px; right: 4px; }
    .cat-header h2 { font-size: 0.85em; }
}
@media (max-width: 380px) {
    .product-grid { grid-template-columns: repeat(3, 1fr); gap: 6px; }
    .prod-artwork { padding: 8px; }
}
