/* ==================== RESET & BASE ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-dark: #0a0a0a;
    --bg-darker: #050505;
    --glass-bg: rgba(20, 20, 30, 0.7);
    --glass-border: rgba(255, 255, 255, 0.1);
    --neon-blue: #00d4ff;
    --neon-purple: #9b59b6;
    --neon-orange: #ff6b35;
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.7);
    --card-bg: rgba(25, 25, 35, 0.8);
    --success: #00ff88;
    --error: #ff4757;
    --warning: #ffa502;
}

body.light-mode {
    --bg-dark: #f5f5f7;
    --bg-darker: #e8e8ec;
    --glass-bg: rgba(255, 255, 255, 0.8);
    --glass-border: rgba(0, 0, 0, 0.1);
    --text-primary: #1a1a2e;
    --text-secondary: rgba(0, 0, 0, 0.7);
    --card-bg: rgba(255, 255, 255, 0.9);
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg-dark);
    color: var(--text-primary);
    overflow-x: hidden;
    transition: all 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ==================== NOISE OVERLAY ==================== */
.noise-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

/* ==================== PREMIUM LOADER (Fixed - Visible & Slower) ==================== */
#loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0a0a0a;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 1s ease;
}

/* Background glow effect */
#loader-wrapper::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0,212,255,0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: glowPulse 2s ease-in-out infinite;
}

.loader-container {
    position: relative;
    width: 150px;
    height: 150px;
    margin-bottom: 40px;
    z-index: 2;
}

/* Outer ring */
.loader-ring {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 3px solid transparent;
    border-top: 3px solid #00d4ff;
    border-right: 3px solid #9b59b6;
    border-radius: 50%;
    animation: spin 2s linear infinite;
}

/* Middle ring */
.loader-ring-middle {
    position: absolute;
    top: 20px;
    left: 20px;
    width: calc(100% - 40px);
    height: calc(100% - 40px);
    border: 3px solid transparent;
    border-bottom: 3px solid #ff6b35;
    border-left: 3px solid #00d4ff;
    border-radius: 50%;
    animation: spin-reverse 1.5s linear infinite;
}

/* Inner ring */
.loader-ring-inner {
    position: absolute;
    top: 40px;
    left: 40px;
    width: calc(100% - 80px);
    height: calc(100% - 80px);
    border: 2px solid transparent;
    border-top: 2px solid #9b59b6;
    border-right: 2px solid #ff6b35;
    border-radius: 50%;
    animation: spin 1.2s linear infinite;
}

/* Center logo */
.loader-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2.5rem;
    color: #00d4ff;
    animation: pulseGlow 2s ease-in-out infinite;
}

/* Main text - LUMINA */
.loader-text {
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: 10px;
    margin-bottom: 15px;
    display: flex;
    gap: 5px;
    z-index: 2;
}

.loader-text span {
    display: inline-block;
    background: linear-gradient(135deg, #00d4ff, #9b59b6, #ff6b35);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    opacity: 0;
    transform: translateY(30px);
    animation: letterRise 0.6s ease forwards;
}

.loader-text span:nth-child(1) { animation-delay: 0.1s; }
.loader-text span:nth-child(2) { animation-delay: 0.2s; }
.loader-text span:nth-child(3) { animation-delay: 0.3s; }
.loader-text span:nth-child(4) { animation-delay: 0.4s; }
.loader-text span:nth-child(5) { animation-delay: 0.5s; }
.loader-text span:nth-child(6) { animation-delay: 0.6s; }

/* Subtitle */
.loader-subtitle {
    font-size: 0.9rem;
    letter-spacing: 5px;
    color: rgba(255, 255, 255, 0.6);
    z-index: 2;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards 0.8s;
}

/* Progress bar */
.loader-progress {
    width: 200px;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    margin-top: 40px;
    overflow: hidden;
    z-index: 2;
}

.loader-progress-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #00d4ff, #9b59b6, #ff6b35);
    border-radius: 2px;
    animation: progressLoad 2.5s ease-out forwards;
}

/* Animations */
@keyframes spin {
    to { transform: rotate(360deg); }
}

@keyframes spin-reverse {
    to { transform: rotate(-360deg); }
}

@keyframes pulseGlow {
    0%, 100% { 
        opacity: 1; 
        text-shadow: 0 0 10px #00d4ff;
    }
    50% { 
        opacity: 0.7; 
        text-shadow: 0 0 30px #00d4ff, 0 0 10px #9b59b6;
    }
}

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

@keyframes letterRise {
    0% { 
        opacity: 0; 
        transform: translateY(30px);
    }
    100% { 
        opacity: 1; 
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes progressLoad {
    0% { width: 0%; }
    30% { width: 40%; }
    60% { width: 75%; }
    100% { width: 100%; }
}
/* ==================== ANIMATED BACKGROUND ==================== */
.animated-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    background: radial-gradient(circle at 20% 50%, rgba(0, 212, 255, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(155, 89, 182, 0.08) 0%, transparent 50%),
                linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 100%);
}

body.light-mode .animated-bg {
    background: radial-gradient(circle at 20% 50%, rgba(0, 212, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(155, 89, 182, 0.08) 0%, transparent 50%),
                linear-gradient(135deg, #e8e8ec 0%, #ffffff 100%);
}

/* ==================== GLASSMORPHISM ==================== */
.glass-nav, .glass-card, .slide-panel, .modal-content {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: all 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ==================== PREMIUM NAVBAR ==================== */
.glass-nav {
    position: sticky;
    top: 20px;
    margin: 20px;
    padding: 12px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    backdrop-filter: blur(20px);
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 15px;
}

.brand-icon {
    position: relative;
    font-size: 2rem;
    color: var(--neon-blue);
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-main {
    font-size: 1.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--neon-blue), var(--neon-purple));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    letter-spacing: 2px;
}

.brand-sub {
    font-size: 0.7rem;
    letter-spacing: 3px;
    color: var(--text-secondary);
}

.nav-controls {
    display: flex;
    gap: 15px;
    align-items: center;
    flex-wrap: wrap;
}

.icon-group {
    display: flex;
    gap: 10px;
}

.icon-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    color: var(--text-primary);
    padding: 10px 15px;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.icon-btn .tooltip {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--neon-blue);
    color: #000;
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 0.7rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    pointer-events: none;
}

.icon-btn:hover .tooltip {
    opacity: 1;
    visibility: visible;
    bottom: -35px;
}

.icon-btn:hover {
    background: var(--neon-blue);
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
}

.badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--neon-orange);
    color: white;
    font-size: 0.7rem;
    padding: 2px 6px;
    border-radius: 20px;
    font-weight: bold;
}

/* ==================== HERO SECTION ==================== */
.hero-section {
    text-align: center;
    padding: 60px 20px 40px;
    margin: 0 20px;
}

.hero-badge {
    display: inline-block;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid var(--neon-blue);
    padding: 5px 15px;
    border-radius: 30px;
    font-size: 0.8rem;
    color: var(--neon-blue);
    margin-bottom: 20px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.gradient-text {
    background: linear-gradient(135deg, var(--neon-blue), var(--neon-purple), var(--neon-orange));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 30px;
    line-height: 1.6;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 50px;
}

.hero-stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--neon-blue);
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

/* ==================== SEARCH ==================== */
.search-wrapper {
    position: relative;
}

.search-wrapper i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-secondary);
    z-index: 1;
}

.search-wrapper input {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--glass-border);
    color: var(--text-primary);
    padding: 10px 15px 10px 40px;
    border-radius: 12px;
    width: 250px;
    transition: all 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.search-wrapper input:focus {
    outline: none;
    border-color: var(--neon-blue);
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.3);
}

/* ==================== BUTTONS ==================== */
.neon-btn {
    background: linear-gradient(135deg, var(--neon-blue), var(--neon-purple));
    border: none;
    color: white;
    padding: 10px 25px;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.neon-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 25px rgba(0, 212, 255, 0.6);
}

.neon-btn.small {
    padding: 6px 15px;
    font-size: 0.85rem;
}

.neon-btn.outline {
    background: transparent;
    border: 2px solid var(--neon-blue);
}

.neon-btn.full {
    width: 100%;
}

.neon-btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.neon-btn:active::after {
    width: 300px;
    height: 300px;
}

/* ==================== CATEGORY FILTER ==================== */
.category-strip {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin: 30px 20px;
    flex-wrap: wrap;
}

.cat-filter {
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    color: var(--text-primary);
    padding: 10px 25px;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.cat-filter i {
    font-size: 1rem;
}

.cat-filter:hover, .cat-filter.active {
    background: linear-gradient(135deg, var(--neon-blue), var(--neon-purple));
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0, 212, 255, 0.4);
}

/* ==================== PRODUCTS GRID ==================== */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    padding: 20px;
    margin: 0 auto;
    max-width: 1400px;
}

.product-card {
    cursor: pointer;
    transition: all 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    position: relative;
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
}

.product-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 212, 255, 0.2);
    border-color: var(--neon-blue);
}

.card-img-wrapper {
    position: relative;
    overflow: hidden;
    height: 280px;
}

.card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card:hover .card-img-wrapper img {
    transform: scale(1.1);
}

.fav-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.6);
    border: none;
    color: white;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fav-btn.active {
    color: #ff4757;
    background: rgba(255, 71, 87, 0.8);
}

.fav-btn:hover {
    transform: scale(1.1);
}

.card-info {
    padding: 20px;
}

.card-info h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.category {
    color: var(--neon-blue);
    font-size: 0.85rem;
    margin-bottom: 12px;
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--neon-orange);
}

.quick-cart {
    background: rgba(0, 212, 255, 0.2);
    border: none;
    color: var(--neon-blue);
    padding: 8px 12px;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.quick-cart:hover {
    background: var(--neon-blue);
    color: #000;
    transform: scale(1.1);
}

/* ==================== MODAL ==================== */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.modal-content {
    max-width: 500px;
    width: 90%;
    padding: 30px;
    position: relative;
    animation: modalSlideIn 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes modalSlideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 2rem;
    cursor: pointer;
    transition: all 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal-close:hover {
    color: var(--neon-blue);
    transform: rotate(90deg);
}

.modal-actions {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

#modal-details img {
    width: 100%;
    border-radius: 16px;
    margin-bottom: 1rem;
}

#modal-details h2 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

#modal-details .price {
    font-size: 1.8rem;
    margin: 15px 0;
}

#modal-details .description {
    line-height: 1.6;
    color: var(--text-secondary);
}

/* ==================== AUTH MODALS ==================== */
.auth-modal .modal-content {
    max-width: 400px;
    text-align: center;
}

.auth-icon {
    font-size: 3rem;
    color: var(--neon-blue);
    margin-bottom: 15px;
}

.auth-modal h3 {
    font-size: 1.8rem;
    margin-bottom: 8px;
    background: linear-gradient(135deg, var(--neon-blue), var(--neon-purple));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.auth-subtitle {
    color: var(--text-secondary);
    margin-bottom: 25px;
    font-size: 0.9rem;
}

.auth-modal input {
    width: 100%;
    padding: 14px;
    margin-bottom: 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    color: var(--text-primary);
    font-size: 1rem;
    transition: all 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.auth-modal input:focus {
    outline: none;
    border-color: var(--neon-blue);
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.3);
}

.auth-footer {
    margin-top: 20px;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.auth-footer a {
    color: var(--neon-blue);
    text-decoration: none;
    cursor: pointer;
}

.auth-footer a:hover {
    text-decoration: underline;
}

/* ==================== SLIDE PANELS ==================== */
.slide-panel {
    position: fixed;
    top: 0;
    right: -450px;
    width: 400px;
    height: 100vh;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    z-index: 1001;
    transition: right 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    border-left: 1px solid var(--glass-border);
}

.slide-panel.open {
    right: 0;
}

.panel-header {
    padding: 20px;
    border-bottom: 1px solid var(--glass-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.panel-title {
    font-size: 1.3rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

.panel-title i {
    color: var(--neon-blue);
}

.close-panel {
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.45s ease;
}

.close-panel:hover {
    transform: rotate(90deg);
    color: var(--neon-blue);
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
}

.cart-item {
    display: flex;
    gap: 15px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    margin-bottom: 10px;
    transition: all 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.cart-item:hover {
    background: rgba(0, 212, 255, 0.1);
    transform: translateX(-5px);
}

.cart-item img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 10px;
}

.cart-item-info {
    flex: 1;
}

.cart-item-info h4 {
    margin-bottom: 5px;
}

.qty-control {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-top: 10px;
}

.qty-btn {
    background: rgba(0, 212, 255, 0.2);
    border: none;
    color: var(--neon-blue);
    padding: 5px 10px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.qty-btn:hover {
    background: var(--neon-blue);
    color: #000;
    transform: scale(1.05);
}

.remove-item {
    background: rgba(255, 71, 87, 0.2);
    border: none;
    color: var(--error);
    padding: 5px 10px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.45s ease;
}

.remove-item:hover {
    background: var(--error);
    color: white;
    transform: scale(1.05);
}

.cart-footer {
    padding: 20px;
    border-top: 1px solid var(--glass-border);
}

.cart-total {
    font-size: 1.3rem;
    font-weight: 700;
    text-align: right;
    margin-bottom: 15px;
}
/* Til Selector - Pastki chap */
/* Language Selector - Bottom Left */
.language-selector-bottom {
    transition: opacity 0.3s ease, transform 0.3s ease;
    opacity: 1;
    transform: translateY(0);
}
.language-selector-bottom.hide {
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;  /* yashirin vaqtda bosilmaydi */
}

.lang-btn-bottom {
    background: transparent;
    border: none;
    color: #aaa;
    padding: 6px 14px;
    border-radius: 40px;
    cursor: pointer;
    font-size: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
    font-family: inherit;
}

.lang-btn-bottom i {
    margin-right: 6px;
    font-size: 12px;
}

.lang-btn-bottom.active {
    background: linear-gradient(135deg, #d4af37, #b8942e);
    color: #0a0a14;
    box-shadow: 0 0 12px rgba(212, 175, 55, 0.5);
}

.lang-btn-bottom:hover:not(.active) {
    color: #d4af37;
    background: rgba(212, 175, 55, 0.1);
}

/* Light mode support */
body.light-mode .language-selector-bottom {
    background: rgba(255, 255, 255, 0.95);
    border-color: rgba(212, 175, 55, 0.5);
}

body.light-mode .lang-btn-bottom {
    color: #333;
}

body.light-mode .lang-btn-bottom.active {
    color: #fff;
}
/* ==================== TOAST NOTIFICATIONS ==================== */
#toast-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
}

.toast {
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border-left: 4px solid var(--neon-blue);
    padding: 15px 25px;
    margin-top: 10px;
    border-radius: 10px;
    animation: slideInRight 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.toast.success { border-left-color: var(--success); }
.toast.error { border-left-color: var(--error); }
.toast.info { border-left-color: var(--neon-blue); }

@keyframes slideInRight {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

/* ==================== EMPTY STATES ==================== */
.empty-state, .empty-cart {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-secondary);
}

.empty-state i, .empty-cart i {
    font-size: 4rem;
    margin-bottom: 20px;
    opacity: 0.5;
}

/* ==================== USER MENU ==================== */
.user-menu {
    display: flex;
    align-items: center;
    gap: 15px;
}

.user-avatar {
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, var(--neon-blue), var(--neon-purple));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.welcome-text {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--neon-blue);
    font-weight: 600;
}

.auth-buttons {
    display: flex;
    gap: 10px;
}

/* ==================== ADMIN PANEL STYLES ==================== */
.admin-panel {
    margin: 20px;
    padding: 25px;
    display: none;
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
}

.admin-header {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--neon-orange);
}

.admin-form input, 
.admin-form select, 
.admin-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    color: var(--text-primary);
}

.admin-list {
    margin-top: 20px;
    max-height: 300px;
    overflow-y: auto;
}

.admin-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    background: rgba(255, 255, 255, 0.05);
    margin-bottom: 8px;
    border-radius: 8px;
}

.admin-item button {
    margin-left: 8px;
    padding: 5px 12px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}

/* ==================== SCROLLBAR ==================== */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-darker); border-radius: 10px; }
::-webkit-scrollbar-thumb { background: var(--neon-blue); border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: var(--neon-purple); }

/* ==================== RESPONSIVE ==================== */
@media (max-width: 768px) {
    .glass-nav {
        flex-direction: column;
        gap: 15px;
        margin: 10px;
    }
    
    .nav-controls {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .search-wrapper input {
        width: 200px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-stats {
        gap: 25px;
        flex-wrap: wrap;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
        gap: 20px;
    }
    
    .slide-panel {
        width: 100%;
        right: -100%;
    }
    
    .category-strip {
        gap: 10px;
    }
    
    .cat-filter {
        padding: 6px 15px;
        font-size: 0.85rem;
    }
    
    .auth-modal .modal-content {
        max-width: 90%;
        padding: 25px;
    }
}

@media (max-width: 480px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .modal-content {
        width: 95%;
        padding: 20px;
    }
    
    .hero-title {
        font-size: 1.5rem;
    }
    
    .hero-section {
        padding: 30px 15px;
    }
    
    .brand-main {
        font-size: 1.2rem;
    }
}