/* ═══════════════════════════════════════════════════════════════════
   FIVEM RP EDITION — Asphalt Dark × Gold × Emergency Red
   Roleplay Identity for CeritaKita 
   ═══════════════════════════════════════════════════════════════════ */

:root {
    /* ── Police/EMS Roleplay Palette ── */
    --primary: #3b82f6;
    --primary-glow: rgba(59, 130, 246, 0.25);
    --primary-dim: rgba(59, 130, 246, 0.08);
    --secondary: #ffffff;
    --secondary-glow: rgba(255, 255, 255, 0.25);
    --accent: #ef4444;
    --success: #10b981;
    --danger: #ef4444;

    /* ── Asphalt Dark Theme ── */
    --bg-dark: #0a0a0c;
    --bg-surface: #121214;
    --bg-card: #18181b;
    --bg-elevated: #1f1f22;

    /* ── Borders & Glass ── */
    --border: rgba(59, 130, 246, 0.15);
    --border-hover: rgba(59, 130, 246, 0.3);
    --glass-border: rgba(255, 255, 255, 0.05);

    /* ── Typography ── */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --font-mono: 'JetBrains Mono', 'SF Mono', 'Fira Code', monospace;
    --text-primary: #f4f4f5;
    --text-muted: #a1a1aa;
    --text-dim: #71717a;

    /* ── Motion ── */
    --ease: cubic-bezier(0.16, 1, 0.3, 1);
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ── Reset ──────────────────────────────────── */
* {
    cursor: default;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: var(--font-body);
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
}

body {
    background: var(--bg-dark);
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.6;
}

/* ── Ambient Background ────────────────────── */
.bg-mesh {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: -2;
    background:
        radial-gradient(ellipse 80% 60% at 10% 20%, rgba(59, 130, 246, 0.05) 0%, transparent 60%),
        radial-gradient(ellipse 60% 80% at 85% 80%, rgba(255, 255, 255, 0.03) 0%, transparent 60%),
        radial-gradient(ellipse 100% 100% at 50% 50%, var(--bg-dark) 0%, transparent 100%);
}

/* Grid lines — subtle roleplay UI aesthetic */
.bg-mesh::after {
    content: '';
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
}

.floating-orbs { display: none; }
.orb { display: none; }

/* ── Cursor Orb ────────────────────────────── */
.cursor-orb {
    position: fixed;
    top: 0; left: 0;
    width: var(--cursor-size);
    height: var(--cursor-size);
    background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 60%);
    border-radius: 50%;
    pointer-events: none;
    z-index: -1;
    transition: transform 0.1s ease-out;
    transform: translate(-50%, -50%);
}

/* ── Container ─────────────────────────────── */
.container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 40px;
}

/* ═══════════════════════════════════════════════
   NAVBAR — Full-width Slim Bar
   ═══════════════════════════════════════════════ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 56px;
    background: rgba(7, 11, 20, 0.85);
    backdrop-filter: blur(30px) saturate(180%);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

/* Neon bottom glow line */
.navbar::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent 10%, var(--primary) 50%, transparent 90%);
    opacity: 0.3;
    transition: opacity 0.5s;
}

.navbar:hover::after {
    opacity: 0.7;
}

.navbar.scrolled {
    height: 50px;
    background: rgba(7, 11, 20, 0.95);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1500px;
}

.logo a {
    font-weight: 950;
    font-size: 1.2rem;
    letter-spacing: 2px;
    text-decoration: none;
    color: white;
    margin-right: 50px;
    display: flex;
    align-items: center;
    font-family: var(--font-heading);
    text-transform: uppercase;
}

.logo span {
    color: var(--primary);
    text-shadow: 0 0 20px var(--primary-glow);
}

.nav-links {
    display: flex;
    gap: 8px;
    align-items: center;
    flex: 1;
}

.nav-links a.nav-item {
    color: var(--text-muted);
    font-weight: 600;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: var(--transition);
    text-decoration: none;
    position: relative;
    padding: 8px 16px;
    border-radius: 6px;
}

.nav-links a.nav-item:hover,
.nav-links a.nav-item.active {
    color: var(--primary);
    background: var(--primary-dim);
}

/* Remove old underline effect */
.nav-links a.nav-item::after { display: none; }

.nav-actions {
    display: flex;
    align-items: center;
    gap: 6px;
}

.login-btn-luxury {
    background: transparent;
    color: var(--primary);
    padding: 8px 20px;
    border: 1px solid var(--primary);
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: var(--transition);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

.login-btn-luxury:hover {
    background: var(--primary);
    color: var(--bg-dark);
    box-shadow: 0 0 25px var(--primary-glow);
}

/* ── Cart Toggle ── */
.cart-toggle {
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    position: relative;
    padding: 8px;
    border-radius: 6px;
    transition: var(--transition);
}

.cart-toggle:hover {
    color: var(--primary);
    background: var(--primary-dim);
}

.cart-badge {
    position: absolute;
    top: 2px; right: 0;
    background: var(--secondary);
    color: var(--bg-dark);
    font-size: 0.6rem;
    font-weight: 900;
    padding: 2px 5px;
    border-radius: 4px;
    box-shadow: 0 0 10px var(--secondary-glow);
}

/* ── Lang Switcher ── */
.lang-switcher {
    display: flex;
    gap: 6px;
    margin-left: 6px;
    padding: 4px 10px;
    border-radius: 6px;
    border: 1px solid var(--glass-border);
    background: transparent;
    transition: var(--transition);
}

.lang-switcher:hover {
    border-color: var(--border-hover);
}

.lang-switcher a {
    font-size: 0.65rem;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
}

.lang-switcher a:hover { color: var(--primary); }

/* ── User Profile ── */
.user-profile {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 4px 12px 4px 4px;
    border-radius: 6px;
    border: 1px solid var(--glass-border);
    transition: var(--transition);
}

.user-profile:hover {
    border-color: var(--primary);
    background: var(--primary-dim);
}

.user-profile img {
    width: 26px; height: 26px;
    border-radius: 4px;
    object-fit: cover;
    border: 1px solid var(--glass-border);
}

.user-profile span {
    color: var(--text-primary);
    font-weight: 700;
    font-size: 0.7rem;
}

.action-icon {
    color: var(--text-muted);
    transition: var(--transition);
    margin-left: 4px;
    padding: 6px;
    border-radius: 6px;
}

.action-icon:hover {
    color: var(--primary);
    background: var(--primary-dim);
}

.action-icon.danger:hover {
    color: var(--danger);
    background: rgba(239, 68, 68, 0.08);
}

/* ═══════════════════════════════════════════════
   HERO — Cinematic Full Width
   ═══════════════════════════════════════════════ */
.hero {
    height: 50vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    padding-top: 80px;
    overflow: hidden;
}

/* Animated scanline */
.hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(255, 255, 255, 0.02) 2px,
        rgba(255, 255, 255, 0.02) 4px
    );
    pointer-events: none;
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.08), transparent 70%);
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    filter: blur(80px);
    animation: heroGlow 8s ease-in-out infinite alternate;
}

@keyframes heroGlow {
    0% { opacity: 0.3; transform: translate(-50%, -50%) scale(0.8); }
    100% { opacity: 0.6; transform: translate(-50%, -50%) scale(1.2); }
}

.hero-content {
    max-width: 800px;
    z-index: 10;
}

.hero-badge {
    background: var(--primary-dim);
    color: var(--primary);
    padding: 6px 18px;
    border-radius: 4px;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    border: 1px solid rgba(34, 211, 238, 0.15);
    margin-bottom: 24px;
    display: inline-block;
    font-family: var(--font-mono);
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 8vw, 5.5rem);
    font-weight: 950;
    line-height: 0.9;
    letter-spacing: -4px;
    margin-bottom: 20px;
    color: white;
    text-shadow: 0 0 60px rgba(34, 211, 238, 0.15);
}

.hero p {
    font-size: clamp(0.8rem, 1.3vw, 0.95rem);
    color: var(--text-muted);
    max-width: 500px;
    margin: 0 auto 40px;
    font-weight: 500;
    line-height: 1.8;
}

/* ═══════════════════════════════════════════════
   CATALOG SECTION
   ═══════════════════════════════════════════════ */
.section-header {
    margin: 80px 0 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section-header h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 950;
    letter-spacing: -2px;
    color: white;
}

.catalog-container {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 24px;
    padding-bottom: 80px;
}

/* ── Sidebar ─────────────────────────────────── */
.sidebar-glass {
    position: sticky;
    top: 80px;
    height: fit-content;
    background: var(--bg-surface);
    border: 1px solid var(--border);
    padding: 20px;
    border-radius: 8px;
}

.search-input {
    width: 100%;
    padding: 10px 14px;
    border-radius: 6px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    color: white;
    outline: none;
    font-weight: 600;
    font-size: 0.8rem;
    margin-bottom: 30px;
    transition: var(--transition);
    font-family: var(--font-body);
}

.search-input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--primary-dim);
}

.cat-item {
    margin-bottom: 4px;
    list-style: none;
}

.cat-parent {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 14px;
    border-radius: 6px;
    color: var(--text-muted);
    font-weight: 700;
    font-size: 0.8rem;
    cursor: pointer;
    transition: var(--transition);
    border: 1px solid transparent;
}

.cat-parent:hover {
    background: var(--bg-card);
    color: var(--text-primary);
}

.cat-parent.active {
    color: var(--primary);
    background: var(--primary-dim);
    border-color: rgba(34, 211, 238, 0.15);
    border-left: 3px solid var(--primary);
}

.cat-parent.expanded .chevron {
    transform: rotate(180deg);
    color: var(--primary);
}

.chevron {
    transition: 0.4s var(--ease);
}

.batch-list {
    max-height: 0;
    overflow: hidden;
    list-style: none;
    padding-left: 10px;
    transition: max-height 0.4s var(--ease);
}

.batch-list.show {
    max-height: 600px;
    padding: 8px 0 12px 0;
}

.batch-link {
    display: block;
    padding: 8px 14px;
    color: var(--text-dim);
    font-size: 0.7rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    transition: var(--transition);
    margin-top: 2px;
    border-left: 2px solid transparent;
}

.batch-link:hover {
    color: var(--text-primary);
    background: var(--bg-card);
    border-left-color: var(--text-muted);
}

.batch-link.active {
    color: var(--primary);
    background: var(--primary-dim);
    border-left-color: var(--primary);
    font-weight: 700;
}

/* ═══════════════════════════════════════════════
   PRODUCT CARDS — Sharp Geometric
   ═══════════════════════════════════════════════ */
.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    width: 100%;
}

.product-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 0;
    border-radius: 8px;
    transition: var(--transition);
    text-decoration: none;
    display: block;
    position: relative;
    overflow: hidden;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    opacity: 0;
    transition: opacity 0.3s;
}

.product-card:hover {
    transform: translateY(-6px);
    border-color: var(--border-hover);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 20px var(--primary-dim);
}

.product-card:hover::before {
    opacity: 1;
}

.card-img-wrapper {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/10;
    border-radius: 0;
}

.card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease), filter 0.6s;
    filter: brightness(0.9) contrast(1.05);
}

.product-card:hover img {
    transform: scale(1.06);
    filter: brightness(1) contrast(1.1);
}

.card-title-heavy {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 800;
    line-height: 1.2;
    color: #fff;
    margin-bottom: 4px;
}

.card-price {
    display: block;
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--primary);
    margin-top: 4px;
    font-family: var(--font-mono);
    letter-spacing: -0.5px;
}

.card-badge-premium {
    background: var(--primary-dim);
    color: var(--primary);
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.55rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-family: var(--font-mono);
    white-space: nowrap;
    border: 1px solid rgba(34, 211, 238, 0.12);
}

.card-specs-row {
    display: flex;
    gap: 10px;
    margin-top: 8px;
    flex-wrap: wrap;
}

.card-specs-row span {
    font-size: 0.55rem;
    font-weight: 700;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: var(--font-mono);
    background: rgba(255, 255, 255, 0.03);
    padding: 3px 8px;
    border-radius: 3px;
}

.card-spec-mini {
    font-size: 0.6rem;
    font-weight: 700;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-family: var(--font-mono);
}

.card-price-tag {
    position: absolute;
    bottom: 16px; left: 50%;
    transform: translateX(-50%);
    background: rgba(7, 11, 20, 0.9);
    backdrop-filter: blur(10px);
    color: var(--primary);
    padding: 8px 18px;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 900;
    font-family: var(--font-mono);
    transition: var(--transition);
    border: 1px solid var(--border);
}

.product-card:hover .card-price-tag {
    background: var(--primary);
    color: var(--bg-dark);
    border-color: var(--primary);
    box-shadow: 0 0 20px var(--primary-glow);
}

/* ═══════════════════════════════════════════════
   BUTTONS — Sharp Geometric
   ═══════════════════════════════════════════════ */
.btn-primary-luxury {
    background: var(--primary);
    color: var(--bg-dark);
    padding: 14px 32px;
    border: none;
    border-radius: 6px;
    font-weight: 800;
    font-family: var(--font-heading);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 0 20px var(--primary-glow);
}

.btn-primary-luxury::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
    transition: 0.5s;
}

.btn-primary-luxury:hover::before { left: 100%; }

.btn-primary-luxury:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px var(--primary-glow), 0 0 40px rgba(34, 211, 238, 0.15);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    padding: 12px 24px;
    border: 1px solid var(--border);
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.75rem;
    cursor: pointer;
    transition: var(--transition);
}

.btn-secondary:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: var(--primary-dim);
}

/* ═══════════════════════════════════════════════
   UTILITY COMPONENTS
   ═══════════════════════════════════════════════ */
.whatsapp-float {
    position: fixed;
    bottom: 30px; right: 30px;
    width: 56px; height: 56px;
    background: var(--primary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 30px var(--primary-glow);
    z-index: 1000;
    transition: var(--transition);
    color: var(--bg-dark);
}

.whatsapp-float:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 40px var(--primary-glow);
}

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s var(--ease);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ═══════════════════════════════════════════════
   LIGHTBOX
   ═══════════════════════════════════════════════ */
#lightbox {
    position: fixed;
    z-index: 99999;
    inset: 0;
    background: rgba(7, 11, 20, 0.95);
    display: none;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(30px);
    cursor: zoom-out;
    opacity: 0;
    transition: opacity 0.3s;
}

#lightbox.active { display: flex; opacity: 1; }

#lightbox img {
    max-width: 90%; max-height: 85%;
    border-radius: 8px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.8);
    border: 1px solid var(--border);
    transform: scale(0.96);
    transition: transform 0.4s var(--ease);
}

#lightbox.active img { transform: scale(1); }

#lightbox-close {
    position: absolute;
    top: 30px; right: 40px;
    color: var(--text-muted);
    font-size: 2rem;
    cursor: pointer;
    transition: 0.3s;
}

#lightbox-close:hover {
    color: var(--primary);
    transform: rotate(90deg);
}

/* ═══════════════════════════════════════════════
   SKELETON LOADING
   ═══════════════════════════════════════════════ */
@keyframes shimmer {
    0% { background-position: -1200px 0; }
    100% { background-position: 1200px 0; }
}

.skeleton {
    background: linear-gradient(90deg, rgba(34, 211, 238, 0.02) 25%, rgba(34, 211, 238, 0.06) 50%, rgba(34, 211, 238, 0.02) 75%);
    background-size: 1200px 100%;
    animation: shimmer 2s infinite linear;
    border-radius: 4px;
}

@keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
.spin { animation: spin 1s linear infinite; display: inline-block; }

.products-grid.loading {
    opacity: 0.4;
    pointer-events: none;
    transition: 0.3s;
}

/* ═══════════════════════════════════════════════
   FOOTER — Clean Minimal
   ═══════════════════════════════════════════════ */
.site-footer {
    background: var(--bg-surface);
    border-top: 1px solid var(--border);
    padding: 40px 40px 24px;
    margin-top: 80px;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0; left: 50%;
    transform: translateX(-50%);
    width: 120px; height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.footer-inner {
    max-width: 1500px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-brand {
    font-weight: 950;
    font-size: 1rem;
    letter-spacing: 2px;
    color: white;
    font-family: var(--font-heading);
    text-transform: uppercase;
}

.footer-brand span { color: var(--primary); }

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    color: var(--text-dim);
    font-weight: 600;
    font-size: 0.7rem;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary);
}

.footer-copy {
    width: 100%;
    text-align: center;
    margin-top: 24px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    font-size: 0.6rem;
    color: var(--text-dim);
    font-weight: 500;
    letter-spacing: 1px;
    font-family: var(--font-mono);
}

/* ═══════════════════════════════════════════════
   CHAT WIDGET BUTTON
   ═══════════════════════════════════════════════ */
.chat-widget-btn {
    position: fixed;
    bottom: 24px; right: 24px;
    width: 48px; height: 48px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    z-index: 999;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.chat-widget-btn:hover {
    border-color: var(--primary);
    background: var(--primary-dim);
    box-shadow: 0 0 20px var(--primary-glow);
    transform: translateY(-2px);
}

/* ═══════════════════════════════════════════════
   MOBILE TOGGLE
   ═══════════════════════════════════════════════ */
.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    padding: 6px;
    border-radius: 6px;
}

.mobile-toggle:hover {
    color: var(--primary);
    background: var(--primary-dim);
}

/* ═══════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════ */
@media (max-width: 1200px) {
    .container { padding: 0 20px; }
    .catalog-container { grid-template-columns: 1fr; }
    .sidebar-glass { position: static; margin-bottom: 20px; }
}

@media (max-width: 768px) {
    .navbar {
        padding: 0 16px;
    }

    .nav-links { display: none; }
    .mobile-toggle { display: flex; }

    .nav-links.show {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0; right: 0;
        margin-top: 1px;
        background: var(--bg-surface);
        border: 1px solid var(--border);
        border-top: none;
        padding: 16px;
        gap: 8px;
    }

    .hero { padding-top: 60px; }
    .lang-switcher { display: none; }
    .products-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .site-footer { padding: 30px 16px 20px; }

    .footer-inner {
        flex-direction: column;
        text-align: center;
    }

    .footer-links { justify-content: center; }
}

@media (max-width: 480px) {
    .products-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════
   TYPOGRAPHY HELPERS
   ═══════════════════════════════════════════════ */
.text-heading { font-family: var(--font-heading); font-weight: 900; letter-spacing: -1px; }
.text-luxury { font-weight: 950; letter-spacing: 2px; text-transform: uppercase; color: #fff; }
.text-cyan { color: var(--primary); text-shadow: 0 0 15px var(--primary-glow); }