:root {
    --bg: #080d18;
    --bg-soft: #101826;
    --primary: #ffb400;
    --secondary: #ff9f1a;
    --body-bg: #f5f7fb;
    --text-main: #101826;
    --text-soft: #96a0b5;
    --card: #ffffff;
    --border: rgba(255, 255, 255, 0.12);
}

body {
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--text-main);
    background: var(--body-bg);
}

img { max-width: 100%; display: block; }

.site-navbar {
    background: color-mix(in srgb, var(--bg) 92%, transparent);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.brand-mark {
    width: 2.5rem;
    height: 2.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, color-mix(in srgb, var(--primary) 75%, white), var(--secondary));
    color: #111827;
}

.hero-section {
    background:
        radial-gradient(circle at 20% 20%, rgba(255,180,0,0.14), transparent 30%),
        radial-gradient(circle at 80% 20%, rgba(22,163,74,0.12), transparent 25%),
        linear-gradient(135deg, #080d18 0%, #111b2d 60%, #0b1220 100%);
}

.eyebrow,
.section-kicker {
    font-size: .875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--primary);
}

.hero-stats .stat-card,
.summary-card,
.detail-card,
.filter-card,
.empty-card,
.cart-table-wrap,
.glass-card,
.auth-card,
.admin-stat-card,
.info-box {
    background: #fff;
    border-radius: 1.5rem;
    box-shadow: 0 20px 45px rgba(15, 23, 42, 0.08);
}

.hero-stats .stat-card {
    padding: 1rem 1.15rem;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.08);
    backdrop-filter: blur(8px);
}

.hero-stats .stat-card strong,
.hero-stats .stat-card span { color: #fff; display:block; }
.hero-stats .stat-card strong { font-size: 1.4rem; }
.hero-stats .stat-card span { color: #c8d0df; font-size: .875rem; }

.hero-panel {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 1.75rem;
    overflow: hidden;
    backdrop-filter: blur(10px);
}
.hero-panel-top {
    display:flex;
    gap:.5rem;
    padding: 1rem 1.25rem;
    border-bottom:1px solid rgba(255,255,255,.08);
}
.hero-panel-top span {
    width: .85rem;
    height: .85rem;
    border-radius: 50%;
    background: rgba(255,255,255,.45);
}
.hero-panel-body { padding: 1.5rem; }
.tech-card {
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 1.25rem;
    padding: 1.15rem;
    color: #fff;
    height: 100%;
}
.tech-card small { color: #c8d0df; display:block; margin-bottom:.3rem; }
.tech-card p { color:#d5dcea; margin-bottom:0; font-size:.93rem; }
.tech-card.active { background: rgba(255,180,0,.12); }
.mini-cta {
    background: rgba(255,255,255,.08);
    border-radius: 1.25rem;
    padding: 1rem 1.15rem;
    color:#fff;
}

.category-card,
.product-card {
    background: #fff;
    border-radius: 1.5rem;
    padding: 1.4rem;
    box-shadow: 0 20px 45px rgba(15, 23, 42, 0.08);
    transition: .25s ease;
    border: 1px solid rgba(15,23,42,.06);
}
.category-card:hover,
.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 60px rgba(15,23,42,.14);
}
.category-icon {
    width: 3.2rem;
    height: 3.2rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 1rem;
    background: rgba(255,180,0,.16);
    color: #111827;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}
.category-card h3 { font-size: 1.2rem; color:#101826; }
.category-card p { color: #667085; }
.category-card span { color:#111827; font-weight:600; }

.product-thumb {
    display:block;
    aspect-ratio: 4 / 3;
    border-radius: 1.2rem;
    overflow:hidden;
    background: linear-gradient(135deg, #edf2ff, #f8fafc);
}
.product-thumb img { width:100%; height:100%; object-fit:cover; }
.product-body { padding-top: 1.1rem; }
.product-body h3 { font-size: 1.15rem; margin: .5rem 0; }
.product-body h3 a { color:#101826; text-decoration:none; }
.product-body p { color:#667085; min-height: 3.25rem; }
.product-badge {
    display:inline-flex;
    align-items:center;
    border-radius:999px;
    padding:.45rem .8rem;
    background:#111827;
    color:#fff;
    font-size:.78rem;
    font-weight:600;
}
.product-bottom {
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap: .75rem;
    flex-wrap: wrap;
}
.product-bottom strong,
.detail-price { font-size: 1.25rem; }

.page-hero { background: linear-gradient(180deg, #f8fafc, #eef2f7); }
.filter-card { border:1px solid rgba(15,23,42,.06); }
.detail-image-wrap {
    background: linear-gradient(135deg, #edf2ff, #fff);
    border-radius: 1.75rem;
    padding: 1rem;
    box-shadow: 0 20px 50px rgba(15,23,42,.08);
}
.detail-card { padding: 1.35rem; }
.quantity-input { max-width: 110px; }

.cart-table-wrap,
.summary-card,
.empty-card,
.checkout-form { padding: 1.5rem; }
.cart-thumb,
.admin-thumb {
    width: 72px;
    height: 56px;
    object-fit: cover;
    border-radius: .9rem;
    background: #eef2f7;
}
.order-summary-item {
    display:flex;
    justify-content:space-between;
    gap:1rem;
    padding:.85rem 0;
    border-bottom:1px dashed rgba(15,23,42,.1);
}
.order-summary-item:last-child { border-bottom:none; }
.sticky-summary { position: sticky; top: 100px; }

.site-footer {
    background: #080d18;
}
.footer-links a,
.footer-contact li {
    color: #c8d0df;
    text-decoration:none;
    margin-bottom:.65rem;
    display:block;
}
.footer-contact li i { margin-right:.5rem; color: var(--primary); }
.check-list div {
    color: #dbe4f5;
    margin-bottom: .8rem;
    display:flex;
    gap:.6rem;
    align-items:flex-start;
}
.check-list i { color: var(--primary); }
.glass-card {
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.08);
    backdrop-filter: blur(10px);
}
.info-box {
    background: rgba(255,255,255,.1);
    color: #fff;
    padding: 1.1rem;
    border-radius: 1.1rem;
}
.info-box small { color: #d5dcea; display:block; margin-bottom:.35rem; }

.admin-auth-bg {
    min-height: 100vh;
    background: radial-gradient(circle at top left, rgba(255,180,0,.16), transparent 30%), linear-gradient(135deg, #f5f7fb 0%, #eef2f7 100%);
}
.auth-card {
    background:#fff;
    border-radius:1.75rem;
}
.admin-auth-icon {
    width:4rem;height:4rem;border-radius:1.25rem;
    display:inline-flex;align-items:center;justify-content:center;
    background: rgba(255,180,0,.16);
    font-size:1.5rem;
}

.admin-body {
    background:#f3f6fb;
    color:#0f172a;
}
.admin-layout {
    min-height:100vh;
    display:grid;
    grid-template-columns: 280px 1fr;
}
.admin-sidebar {
    background: #0b1220;
    padding: 1.5rem;
    position: sticky;
    top: 0;
    height: 100vh;
}
.admin-brand {
    display:flex;
    gap:.9rem;
    color:#fff;
    text-decoration:none;
    align-items:center;
    margin-bottom: 2rem;
}
.admin-brand span {
    width:3rem;height:3rem;border-radius:1rem;
    display:inline-flex;align-items:center;justify-content:center;
    background: linear-gradient(135deg, color-mix(in srgb, var(--primary) 75%, white), var(--secondary));
    color:#111827;
    font-size:1.2rem;
}
.admin-brand small { color:#94a3b8; display:block; }
.admin-menu { display:flex; flex-direction:column; gap:.45rem; }
.admin-menu a {
    color:#c8d0df;
    text-decoration:none;
    padding:.85rem 1rem;
    border-radius: .95rem;
    transition: .2s ease;
}
.admin-menu a:hover {
    background: rgba(255,255,255,.08);
    color:#fff;
}
.admin-main { padding: 2rem; }
.admin-topbar {
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:1rem;
    margin-bottom:1.5rem;
}
.admin-stat-card {
    padding:1.4rem;
}
.admin-stat-card small { display:block; color:#64748b; margin-bottom:.4rem; }
.admin-stat-card strong { font-size:1.45rem; }

@media (max-width: 991.98px) {
    .admin-layout { grid-template-columns: 1fr; }
    .admin-sidebar {
        position: relative;
        height: auto;
        border-bottom-left-radius: 1.5rem;
        border-bottom-right-radius: 1.5rem;
    }
    .sticky-summary { position: static; }
}

@media (max-width: 767.98px) {
    .hero-section { padding-top: 1rem; }
    .product-bottom { flex-direction: column; align-items: stretch; }
    .product-bottom .btn { width: 100%; }
    .admin-main { padding: 1.2rem; }
    .admin-topbar { flex-direction: column; align-items: stretch; }
}


.header-notice{background:color-mix(in srgb, var(--primary) 12%, white);color:var(--text-main);border-bottom:1px solid rgba(15,23,42,.06)}
.floating-wa{position:fixed;right:18px;bottom:18px;width:58px;height:58px;border-radius:50%;display:inline-flex;align-items:center;justify-content:center;background:#25D366;color:#fff;text-decoration:none;font-size:1.7rem;box-shadow:0 16px 36px rgba(37,211,102,.35);z-index:1080}
.floating-wa:hover{transform:translateY(-2px);color:#fff}
.quick-quote-card{padding:1.5rem;background:#fff;border-radius:1.5rem;box-shadow:0 20px 45px rgba(15,23,42,.08)}
.quick-quote-side{background:linear-gradient(135deg, var(--bg), color-mix(in srgb, var(--bg) 82%, #13203b));color:#fff;border-radius:1.5rem;padding:1.5rem;box-shadow:0 20px 45px rgba(15,23,42,.16)}
.quick-quote-side ul{padding-left:1rem;margin-bottom:0}.quick-quote-side li{margin-bottom:.85rem;color:#d5dcea}
