/* ===== RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Основные цвета бренда */
    --primary-color: #ff6900;
    --secondary-color: #ff8c00;
    
    /* Фоновые цвета - СВЕТЛЫЕ */
    --dark-bg: #ffffff;  /* Изменено с темного на белый */
    --card-bg: #ffffff;  /* Белые карточки */
    --text-light: #1a1a1a;  /* Темный текст вместо светлого */
    --text-gray: #6b7280;  /* Серый текст */
    
    /* Дополнительные цвета */
    --success: #10b981;
    --danger: #ef4444;
    --gradient: linear-gradient(135deg, #ff6900 0%, #ff8533 100%);
    
    /* Новые переменные для светлой темы */
    --bg-primary: #ffffff;
    --bg-secondary: #f8f9fa;
    --bg-tertiary: #f3f4f6;
    --text-primary: #1a1a1a;
    --text-secondary: #4b5563;
    --text-muted: #9ca3af;
    --border-color: #e5e7eb;
    --border-light: #f0f1f3;
    
    /* Тени для светлой темы */
    --shadow-xs: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: var(--bg-secondary);
    color: var(--text-primary);
    overflow-x: hidden;
    position: relative;
}

/* Блокировка скролла */
body.no-scroll {
    overflow: hidden;
    position: fixed;
    width: 100%;
}

/* ===== ANIMATIONS ===== */
@keyframes gradientShift {
    0% { background-position: 0% 50% }
    50% { background-position: 100% 50% }
    100% { background-position: 0% 50% }
}

@keyframes float {
    0% {
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }
    10% { opacity: 0.2; }
    90% { opacity: 0.2; }
    100% {
        transform: translateY(-100vh) scale(1);
        opacity: 0;
    }
}

@keyframes glow {
    from { filter: drop-shadow(0 0 5px rgba(255, 105, 0, 0.3)); }
    to { filter: drop-shadow(0 0 20px rgba(255, 105, 0, 0.5)); }
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(255, 105, 0, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(255, 105, 0, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 105, 0, 0); }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes expand {
    0%, 100% { width: 100px; }
    50% { width: 200px; }
}

@keyframes float-device {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

@keyframes bounce {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

@keyframes iconPulse {
    0% { transform: scale(1) rotate(0deg); }
    25% { transform: scale(1.1) rotate(-5deg); }
    50% { transform: scale(1.2) rotate(5deg); }
    75% { transform: scale(1.1) rotate(-5deg); }
    100% { transform: scale(1) rotate(0deg); }
}

@keyframes heartBeat {
    0% { transform: scale(1); }
    50% { transform: scale(1.3); }
    100% { transform: scale(1); }
}

@keyframes pulse-ring {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.4);
        opacity: 0;
    }
}

@keyframes spin {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* ===== BACKGROUND EFFECTS ===== */
.bg-animation {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    background: linear-gradient(270deg, #ffffff, #f8f9fa, #f3f4f6);
    background-size: 600% 600%;
    animation: gradientShift 15s ease infinite;
}

.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 50%;
    animation: float 20s infinite linear;
    opacity: 0;
}

/* ===== NAVIGATION ===== */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1rem 5%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid var(--border-color);
}



.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    font-size: 2rem;
    font-weight: bold;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: glow 2s ease-in-out infinite alternate;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    color: var(--text-primary);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a.active {
    color: var(--primary-color);
}

/* ===== MEGA MENU ===== */
.mega-menu-trigger {
    position: relative;
    cursor: pointer;
}

.mega-menu-trigger > a {
    position: relative;
    user-select: none;
}

.mega-menu-trigger > a::before {
    content: '▾';
    position: absolute;
    right: -15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.8rem;
    opacity: 0.6;
    transition: transform 0.3s ease;
}

.mega-menu-trigger.active > a::before {
    transform: translateY(-50%) rotate(180deg);
}

.mega-menu-trigger:hover > a {
    color: var(--primary-color);
}

.mega-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1002;
}

.mega-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mega-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition: all 0.3s ease;
    z-index: 1003;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
    will-change: transform, opacity;
}

.mega-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    will-change: auto;
}

.mega-menu * {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mega-menu a,
.mega-menu button {
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    user-select: none;
}



.mega-menu-close {
    position: fixed;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: var(--bg-primary);
    border: 2px solid var(--border-color);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--text-primary);
    transition: all 0.3s ease;
    z-index: 1001;
    box-shadow: var(--shadow-md);
}

.mega-menu-close:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
    transform: rotate(90deg) scale(1.1);
    box-shadow: 0 0 20px rgba(255, 105, 0, 0.5);
}

.mega-menu::-webkit-scrollbar {
    width: 8px;
}

.mega-menu::-webkit-scrollbar-track {
    background: var(--bg-secondary);
}

.mega-menu::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

.mega-menu::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-color);
}

.mega-menu.active .mega-menu-container {
    animation: slideDown 0.4s ease;
}

.mega-menu-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 3rem 2rem;
    display: grid;
    grid-template-columns: 3fr 1fr;
    gap: 3rem;
    min-height: 100vh;
}

.mega-menu-categories {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.mega-menu.active .mega-menu-category {
    animation: fadeInUp 0.5s ease both;
}

.mega-menu.active .mega-menu-category:nth-child(1) { animation-delay: 0.1s; }
.mega-menu.active .mega-menu-category:nth-child(2) { animation-delay: 0.15s; }
.mega-menu.active .mega-menu-category:nth-child(3) { animation-delay: 0.2s; }
.mega-menu.active .mega-menu-category:nth-child(4) { animation-delay: 0.25s; }
.mega-menu.active .mega-menu-category:nth-child(5) { animation-delay: 0.3s; }
.mega-menu.active .mega-menu-category:nth-child(6) { animation-delay: 0.35s; }
.mega-menu.active .mega-menu-category:nth-child(7) { animation-delay: 0.4s; }
.mega-menu.active .mega-menu-category:nth-child(8) { animation-delay: 0.45s; }

.mega-menu-category {
    padding: 1rem;
    border-radius: 15px;
    transition: all 0.3s ease;
    background: var(--bg-primary);
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
}

.mega-menu-category:hover {
    background: rgba(255, 105, 0, 0.05);
    border-color: rgba(255, 105, 0, 0.3);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.mega-menu-category-header {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
    padding-bottom: 0.8rem;
    border-bottom: 2px solid var(--border-light);
}

.mega-menu-category-icon {
    font-size: 1.5rem;
    filter: grayscale(0.2);
}

.mega-menu-category-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.mega-menu-category-header:hover .mega-menu-category-title {
    color: var(--primary-color);
}

.mega-menu-subcategories {
    list-style: none;
}

.mega-menu-subcategory {
    margin-bottom: 0.5rem;
}

.mega-menu-subcategory a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 0.5rem;
    color: #fff !important;
    text-decoration: none;
    font-size: 0.95rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.mega-menu-subcategory a:hover {
    color: var(--primary-color);
    background: rgba(255, 105, 0, 0.08);
    transform: translateX(5px);
}

.mega-menu-subcategory-icon {
    font-size: 0.8rem;
    opacity: 0.6;
}

.mega-menu.active .mega-menu-offers {
    animation: fadeInRight 0.6s ease 0.3s both;
}

.mega-menu-offers {
    background: linear-gradient(135deg, rgba(255, 105, 0, 0.08), rgba(255, 140, 0, 0.04));
    border-radius: 20px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 105, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.mega-menu-offers::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 105, 0, 0.05) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

.mega-menu-offers-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.mega-menu.active .mega-menu-offer {
    animation: fadeInUp 0.5s ease both;
}

.mega-menu.active .mega-menu-offer:nth-child(2) { animation-delay: 0.4s; }
.mega-menu.active .mega-menu-offer:nth-child(3) { animation-delay: 0.5s; }
.mega-menu.active .mega-menu-offer:nth-child(4) { animation-delay: 0.6s; }

.mega-menu-offer {
    display: block;
    padding: 1rem;
    background: var(--bg-primary);
    border-radius: 15px;
    margin-bottom: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border-light);
}

.mega-menu-offer::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 105, 0, 0.1), transparent);
    transition: left 0.5s ease;
}

.mega-menu-offer:hover::before {
    left: 100%;
}

.mega-menu-offer:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(255, 105, 0, 0.3);
}

.mega-menu-offer-badge {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    background: var(--primary-color);
    color: white;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.mega-menu-offer-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.3rem;
}

.mega-menu-offer-subtitle {
    font-size: 0.9rem;
    color: #d6d6d6 !important;
}

.mega-menu-bottom {
    grid-column: 1 / -1;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-light);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mega-menu-brands {
    display: flex;
    gap: 2rem;
}

.mega-menu-brand {
    padding: 0.5rem 1rem;
    background: var(--bg-tertiary);
    border-radius: 25px;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 600;
    border: 1px solid var(--border-light);
}

.mega-menu-brand:hover {
    background: var(--primary-color);
    color: white;
    transform: scale(1.05);
    border-color: var(--primary-color);
}

.mega-menu-info {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.mega-menu-info-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.mega-menu-info-item span {
    color: var(--primary-color);
    font-weight: 600;
}

/* ===== CART & WISHLIST ICONS ===== */
.cart-icon {
    position: relative;
    cursor: pointer;
    transition: transform 0.3s ease;
    font-size: 1.5rem;
    color: var(--text-primary);
}

.cart-icon:hover {
    transform: scale(1.1);
    color: var(--primary-color);
}

.cart-icon.bounce {
    animation: bounce 0.5s ease;
}

.cart-icon.pulse {
    animation: iconPulse 0.5s ease;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: bold;
}

/* ===== MOBILE MENU ===== */
.mobile-menu-toggle {
    display: none;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    position: relative;
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--text-primary);
    margin: 5px auto;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== HERO SECTION ===== */
.hero {
    margin-top: 80px;
    padding: 4rem 5%;
    min-height: 70vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 4rem;
    width: 100%;
}

.hero-text {
    flex: 1;
    max-width: 600px;
}

.hero-text h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    background: linear-gradient(45deg, var(--text-primary), var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: slideInLeft 1s ease;
}

.hero-text p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    animation: fadeIn 1s ease 0.3s both;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(255, 105, 0, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 105, 0, 0.5);
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: float-device 3s ease-in-out infinite;
}

.hero-image img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(255, 105, 0, 0.2));
}

/* ===== BANNER SLIDER ===== */
.banner-slider-section {
    padding: 2rem 5%;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    margin-top: 100px;
}

.banner-slider-container {
    position: relative;
    width: 100%;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--bg-primary), var(--bg-secondary));
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border-light);
}

.banner-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.banner-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    background: linear-gradient(135deg, rgba(255, 105, 0, 0.03), rgba(255, 140, 0, 0.02));
}

.banner-slide.active {
    opacity: 1;
    visibility: visible;
}

.banner-slide::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -25%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 105, 0, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    animation: rotate 20s linear infinite;
}

.banner-slide::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 140, 0, 0.04) 0%, transparent 70%);
    border-radius: 50%;
    animation: rotate 25s linear infinite reverse;
}

.banner-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    padding: 3rem;
    position: relative;
    z-index: 2;
}

.banner-text {
    flex: 1;
    max-width: 500px;
}

.banner-badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 10px rgba(255, 105, 0, 0.3);
}

.banner-text h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
    background: linear-gradient(45deg, var(--text-primary), var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
    line-height: 1.2;
}

.banner-text p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.banner-price {
    display: flex;
    align-items: baseline;
    gap: 1rem;
    margin-bottom: 2rem;
}

.price-now {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--primary-color);
    text-shadow: 0 0 20px rgba(255, 105, 0, 0.2);
}

.price-old {
    font-size: 1.5rem;
    color: var(--text-muted);
    text-decoration: line-through;
    opacity: 0.6;
}

.banner-btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(255, 105, 0, 0.3);
}

.banner-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.banner-btn:hover::before {
    left: 100%;
}

.banner-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 105, 0, 0.5);
}

.banner-image {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    animation: float-device 3s ease-in-out infinite;
}

.banner-icon {
    font-size: 15rem;
    filter: drop-shadow(0 20px 40px rgba(255, 105, 0, 0.2));
    position: relative;
    z-index: 1;
}

.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--border-color);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.dot::before {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border-radius: 50%;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.dot:hover {
    background: var(--text-muted);
}

.dot.active {
    background: var(--primary-color);
    width: 30px;
    border-radius: 20px;
}

/* ===== CATEGORIES SECTION ===== */
.categories {
    padding: 4rem 5%;
    margin: 0 auto;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    display: inline-block;
    width: 100%;
    color: var(--text-primary);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    animation: expand 2s ease infinite;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.category-card {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
}

.category-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, var(--primary-color) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.category-card:hover::before {
    opacity: 0.05;
}

.category-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: var(--shadow-xl);
    border-color: rgba(255, 105, 0, 0.3);
}

.category-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.category-card:hover .category-icon {
    color: var(--primary-color);
    transform: scale(1.1);
}

.category-card h3 {
    color: var(--text-primary);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.category-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* ===== PRODUCTS SECTION ===== */
.products {
    padding: 4rem 5%;
    margin: 0 auto;
}

.filter-bar {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    justify-content: center;
}

.filter-btn {
    padding: 0.7rem 1.5rem;
    background: var(--bg-primary);
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-color);
    color: white;
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(255, 105, 0, 0.3);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}

.product-card {
    background: var(--card-bg);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
    cursor: pointer;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent, rgba(255, 105, 0, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover::before {
    opacity: 1;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(255, 105, 0, 0.3);
}

.product-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
    background: linear-gradient(135deg, var(--bg-secondary), var(--bg-tertiary));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    position: relative;
}

.product-card:hover .product-image {
    transform: scale(1.05);
}

.wishlist-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: var(--bg-primary);
    border: 1px solid var(--border-light);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, opacity 0.3s ease;
    z-index: 10;
    font-size: 1.3rem;
    padding: 0;
    outline: none;
    box-shadow: var(--shadow-sm);
}

.product-card:hover .wishlist-btn {
    opacity: 1;
}

.wishlist-btn:hover {
    transform: scale(1.2);
    box-shadow: var(--shadow-md);
}

.wishlist-btn .heart-empty {
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.wishlist-btn:hover .heart-empty {
    color: var(--primary-color);
}

.wishlist-btn .heart-filled {
    display: none;
    color: #ff4757;
}

.wishlist-btn.active {
    background: #ffebeb;
    border-color: #ff4757;
}

.wishlist-btn.active .heart-empty {
    display: none;
}

.wishlist-btn.active .heart-filled {
    display: block;
    animation: heartBeat 0.3s ease;
}

.wishlist-btn.active:hover .heart-filled {
    filter: drop-shadow(0 0 5px rgba(255, 71, 87, 0.5));
}

.quick-view-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--bg-primary);
    color: var(--text-primary);
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 5;
    font-size: 1.5rem;
    box-shadow: var(--shadow-md);
}

.product-card:hover .quick-view-btn {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
}

.quick-view-btn:hover {
    transform: translate(-50%, -50%) scale(1.1);
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.quick-view-btn::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid var(--primary-color);
    animation: pulse-ring 1.5s infinite;
    opacity: 0;
}

.quick-view-btn:hover::after {
    opacity: 1;
}

.product-info {
    
    background: var(--card-bg);
}

.product-badge {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    background: var(--primary-color);
    color: white;
    border-radius: 20px;
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
}

.product-name {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.product-price {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.old-price {
    text-decoration: line-through;
    color: var(--text-muted);
    font-size: 1rem;
    margin-left: 0.5rem;
}

.add-to-cart {
    width: 100%;
    padding: 0.8rem;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(255, 105, 0, 0.3);
}

.add-to-cart::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    font-size: 2rem;
    transition: transform 0.3s ease;
}

.add-to-cart.added::after {
    transform: translate(-50%, -50%) scale(1);
}

.add-to-cart:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(255, 105, 0, 0.4);
}

.add-to-cart.in-cart {
    background: linear-gradient(135deg, #28a745, #20c997);
    cursor: pointer;
}

.add-to-cart.in-cart:hover {
    background: linear-gradient(135deg, #dc3545, #c82333);
}

.add-to-cart.in-cart:hover::after {
    content: ' ✕';
}

/* ===== MODALS ===== */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    z-index: 2000;
    animation: fadeIn 0.3s ease;
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 2rem;
    width: 90%;
    max-width: 500px;
    animation: slideUp 0.3s ease;
    position: relative;
    box-shadow: var(--shadow-2xl);
    border: 1px solid var(--border-light);
}

.close-modal {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-muted);
    transition: color 0.3s ease;
}

.close-modal:hover {
    color: var(--primary-color);
}

.modal h2 {
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
}

.form-group input {
    width: 100%;
    padding: 0.8rem;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(255, 105, 0, 0.1);
}

.form-button {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(255, 105, 0, 0.3);
}

.form-button:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 30px rgba(255, 105, 0, 0.4);
}

/* Quick View Modal */
.quick-view-modal .modal-content {
    max-width: 900px;
    max-height: 90vh;
    overflow-y: auto;
}

.quick-view-content {
    display: flex;
    gap: 2rem;
}

.quick-view-image {
    flex: 1;
    min-width: 300px;
}

.quick-view-image-container {
    width: 100%;
    height: 400px;
    background: #e0e0e0;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10rem;
    position: relative;
    overflow: hidden;
}

.quick-view-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 0.5rem 1rem;
    background: var(--primary-color);
    color: white;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    z-index: 1;
}

.quick-view-info {
    flex: 1;
}

.quick-view-category {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.quick-view-title {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.quick-view-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.stars {
    color: #ffd700;
}

.rating-text {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.quick-view-price {
    display: flex;
    align-items: baseline;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.current-price {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--primary-color);
}

.original-price {
    font-size: 1.5rem;
    color: var(--text-muted);
    text-decoration: line-through;
}

.discount-badge {
    padding: 0.3rem 0.8rem;
    background: var(--success);
    color: white;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: 600;
}

.quick-view-description {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.quick-view-features {
    margin-bottom: 1.5rem;
}

.quick-view-features h4 {
    color: var(--text-primary);
    margin-bottom: 0.8rem;
}

.feature-list {
    list-style: none;
}

.feature-list li {
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success);
}

.quick-view-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.quick-view-actions button {
    flex: 1;
    padding: 1rem;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-add-cart {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: white;
    box-shadow: 0 4px 12px rgba(255, 105, 0, 0.3);
}

.btn-add-cart:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(255, 105, 0, 0.4);
}

.btn-add-wishlist {
    background: var(--bg-tertiary);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

.btn-add-wishlist:hover {
    background: var(--bg-secondary);
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.stock-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    padding: 0.5rem 1rem;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 25px;
    width: fit-content;
}

.stock-indicator {
    width: 8px;
    height: 8px;
    background: var(--success);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

/* Cart & Wishlist Modals */
.cart-modal .modal-content,
.wishlist-modal .modal-content {
    max-width: 700px;
}

.cart-items,
.wishlist-items {
    max-height: 400px;
    overflow-y: auto;
    margin-bottom: 1.5rem;
    padding-right: 10px;
}

.cart-items::-webkit-scrollbar,
.wishlist-items::-webkit-scrollbar {
    width: 8px;
}

.cart-items::-webkit-scrollbar-track,
.wishlist-items::-webkit-scrollbar-track {
    background: var(--bg-secondary);
    border-radius: 10px;
}

.cart-items::-webkit-scrollbar-thumb,
.wishlist-items::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 10px;
}

.cart-items::-webkit-scrollbar-thumb:hover,
.wishlist-items::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-color);
}

.empty-cart-message,
.empty-wishlist-message {
    text-align: center;
    padding: 3rem;
    color: var(--text-secondary);
}

.empty-cart-icon,
.empty-wishlist-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0.5;
}

.cart-item,
.wishlist-item {
    display: flex;
    align-items: center;
    padding: 1rem;
    
    border-radius: 10px;
    transition: all 0.3s ease;
    margin-top: 10px;
    
}

.wishlist-item:hover {
    background: var(--bg-tertiary);
    box-shadow: var(--shadow-sm);
}

.cart-item img,
.wishlist-item img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 10px;
}

.cart-item-image,
.wishlist-item-image {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--bg-tertiary), var(--bg-secondary));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-right: 1rem;
}

.cart-item-info,
.wishlist-item-info {
    flex: 1;
}

.cart-item-name,
.wishlist-item-name {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.cart-item-price,
.wishlist-item-price {
    color: var(--primary-color);
    font-weight: bold;
}

.wishlist-item-actions {
    display: flex;
    gap: 0.5rem;
}

.wishlist-item-btn {
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    font-weight: 600;
}

.wishlist-item-btn.add {
    background: var(--primary-color);
    color: white;
}

.wishlist-item-btn.add:hover {
    background: var(--secondary-color);
    transform: scale(1.05);
}

.wishlist-item-btn.remove {
    background: var(--bg-tertiary);
    color: var(--text-muted);
    border: 1px solid var(--border-color);
}

.wishlist-item-btn.remove:hover {
    background: rgba(239, 68, 68, 0.1);
    color: var(--danger);
    border-color: var(--danger);
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.quantity-controls span {
    color: var(--text-primary);
    font-weight: 600;
    min-width: 30px;
    text-align: center;
}

.quantity-btn {
    width: 30px;
    height: 30px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.quantity-btn:hover {
    transform: scale(1.1);
    background: var(--secondary-color);
}

.cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: rgba(255, 105, 0, 0.05);
    border-radius: 10px;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 105, 0, 0.2);
}

.cart-total h3 {
    color: var(--primary-color);
}

.checkout-button {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(255, 105, 0, 0.3);
}

.checkout-button:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 30px rgba(255, 105, 0, 0.4);
}

/* ===== FOOTER ===== */
footer {
    margin-top: 4rem;
    padding: 3rem 5%;
    background: var(--bg-tertiary);
    border-top: 1px solid var(--border-color);
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.footer-section h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.footer-section a {
    display: block;
    color: var(--text-secondary);
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--primary-color);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--text-secondary);
}

.social-icon:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
    transform: scale(1.1);
}

/* ===== NOTIFICATION ===== */
.notification {
    position: fixed;
    top: 100px;
    right: 20px;
    padding: 1rem 1.5rem;
    background: var(--card-bg);
    color: var(--text-primary);
    border-radius: 10px;
    box-shadow: var(--shadow-xl);
    transform: translateX(400px);
    transition: transform 0.3s ease;
    z-index: 3000;
    max-width: 300px;
    border: 1px solid var(--border-color);
}

.notification.show {
    transform: translateX(0);
}

.notification.success {
    background: #d1fae5;
    color: #065f46;
    border-color: #10b981;
}

.notification.warning {
    background: #fef3c7;
    color: #92400e;
    border-color: #f59e0b;
}

.notification.error {
    background: #fee2e2;
    color: #991b1b;
    border-color: #ef4444;
}

/* ===== LOADER ===== */
.loader {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    border: 3px solid var(--border-color);
    border-top: 3px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    display: none;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
    .mega-menu-categories {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .mega-menu-container {
        grid-template-columns: 2fr 1fr;
    }
}

@media (max-width: 780px) {
    /* Mobile Menu */
    .mobile-menu-toggle {
        display: block;
    }
    
    .nav-links {
        position: fixed;
        top: 60px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 60px);
        background: var(--card-bg);
        flex-direction: column;
        align-items: flex-start;
        padding: 2rem;
        transition: left 0.3s ease;
        z-index: 900;
        overflow-y: auto;
        border-top: 1px solid var(--border-color);
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .nav-links a {
        width: 100%;
        padding: 1rem;
        border-bottom: 1px solid var(--border-light);
        color: var(--text-primary);
    }
    
    .nav-links .cart-icon {
        display: inline-flex;
        margin: 1rem;
        font-size: 1.8rem;
    }
    
    .nav-links > div:last-child {
        display: flex;
        justify-content: center;
        gap: 2rem;
        padding: 1rem;
        border-top: 1px solid var(--border-light);
        margin-top: auto;
    }
    
    /* Hero Section */
    .hero {
        margin-top: 60px;
        padding: 2rem 5%;
        min-height: 60vh;
    }
    
    .hero-content {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-text {
        max-width: 100%;
    }
    
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .hero-text p {
        font-size: 1rem;
    }
    
    .hero-image > div {
        width: 300px !important;
        height: 300px !important;
        font-size: 6rem !important;
    }
    
    .cta-button {
        padding: 0.8rem 2rem;
        font-size: 0.95rem;
    }
    
    /* Остальные медиа-запросы остаются те же... */
}
/* ===== NOTIFICATION ===== */
        .notification {
            position: fixed;
            top: 100px;
            right: 20px;
            padding: 1rem 1.5rem;
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: white;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(255, 105, 0, 0.5);
            transform: translateX(400px);
            transition: transform 0.3s ease;
            z-index: 3000;
            max-width: 300px;
        }

        .notification.show {
            transform: translateX(0);
        }

        .notification.success {
            background: linear-gradient(135deg, #00c851, #00ff88);
        }

        .notification.warning {
            background: linear-gradient(135deg, #ffbb33, #ff8800);
        }

        .notification.error {
            background: linear-gradient(135deg, #ff4444, #cc0000);
        }

        /* ===== LOADER ===== */
        .loader {
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 50px;
            height: 50px;
            border: 3px solid rgba(255, 105, 0, 0.3);
            border-top: 3px solid var(--primary-color);
            border-radius: 50%;
            animation: spin 1s linear infinite;
            display: none;
        }

        /* ===== RESPONSIVE DESIGN ===== */
        @media (max-width: 1024px) {
            .mega-menu-categories {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .mega-menu-container {
                grid-template-columns: 2fr 1fr;
            }
        }

        @media (max-width: 780px) {
            /* Mobile Menu */
            .mobile-menu-toggle {
                display: block;
            }
            
            .nav-links {
                position: fixed;
                top: 60px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 60px);
                background: var(--card-bg);
                flex-direction: column;
                align-items: flex-start;
                padding: 2rem;
                transition: left 0.3s ease;
                z-index: 900;
                overflow-y: auto;
            }
            
            .nav-links.active {
                left: 0;
            }
            
            .nav-links a {
                width: 100%;
                padding: 1rem;
                border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            }
            
            .nav-links .cart-icon {
                display: inline-flex;
                margin: 1rem;
                font-size: 1.8rem;
            }
            
            .nav-links > div:last-child {
                display: flex;
                justify-content: center;
                gap: 2rem;
                padding: 1rem;
                border-top: 1px solid rgba(255, 255, 255, 0.1);
                margin-top: auto;
            }
            
            /* Hero Section */
            .hero {
                margin-top: 60px;
                padding: 2rem 5%;
                min-height: 60vh;
            }
            
            .hero-content {
                flex-direction: column;
                text-align: center;
            }
            
            .hero-text {
                max-width: 100%;
            }
            
            .hero-text h1 {
                font-size: 2rem;
            }
            
            .hero-text p {
                font-size: 1rem;
            }
            
            .hero-image > div {
                width: 300px !important;
                height: 300px !important;
                font-size: 6rem !important;
            }
            
            .cta-button {
                padding: 0.8rem 2rem;
                font-size: 0.95rem;
            }
            
            /* Banner Slider */
            .banner-slider-container {
                height: 500px;
            }
            
            .banner-content {
                flex-direction: column;
                text-align: center;
                padding: 2rem;
            }
            
            .banner-text {
                max-width: 100%;
            }
            
            .banner-text h2 {
                font-size: 2rem;
            }
            
            .price-now {
                font-size: 2rem;
            }
            
            .price-old {
                font-size: 1.2rem;
            }
            
            .banner-icon {
                font-size: 10rem;
            }
            
            /* Mega Menu */
            .mega-menu {
                padding-top: 60px;
            }
            
            .mega-menu-container {
                grid-template-columns: 1fr;
                padding: 1.5rem 1rem;
                gap: 2rem;
            }
            
            .mega-menu-categories {
                grid-template-columns: 1fr;
                gap: 1rem;
            }
            
            .mega-menu-category {
                padding: 0.8rem;
            }
            
            .mega-menu-offers {
                order: -1;
                margin-bottom: 2rem;
            }
            
            .mega-menu-bottom {
                flex-direction: column;
                gap: 1.5rem;
                padding-top: 2rem;
            }
            
            .mega-menu-brands {
                display: grid;
                grid-template-columns: repeat(2, 1fr);
                gap: 1rem;
                width: 100%;
            }
            
            .mega-menu-brand {
                text-align: center;
            }
            
            .mega-menu-info {
                flex-direction: column;
                gap: 1rem;
                width: 100%;
            }
            
            .mega-menu-close {
                top: 15px;
                right: 15px;
                width: 35px;
                height: 35px;
            }
            
            /* Products */
            .product-grid {
                grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            }
            
            /* Modals */
            .wishlist-item {
                flex-direction: column;
                text-align: center;
            }
            
            .wishlist-item-image {
                margin: 0 0 1rem 0;
            }
            
            .wishlist-item-actions {
                width: 100%;
                margin-top: 1rem;
            }
            
            .wishlist-item-btn {
                flex: 1;
            }
            
            .quick-view-content {
                flex-direction: column;
            }
            
            .quick-view-image {
                min-width: 100%;
            }
            
            .quick-view-image-container {
                height: 300px;
            }
        }

        @media (max-width: 480px) {
            /* Hero */
            .hero-image > div {
                width: 250px !important;
                height: 250px !important;
                font-size: 5rem !important;
            }
            
            .hero-text h1 {
                font-size: 1.8rem;
            }
            
            /* Banner Slider */
            .banner-slider-container {
                height: 450px;
                border-radius: 15px;
            }
            
            .banner-text h2 {
                font-size: 1.5rem;
            }
            
            .banner-text p {
                font-size: 0.95rem;
            }
            
            .price-now {
                font-size: 1.5rem;
            }
            
            .price-old {
                font-size: 1rem;
            }
            
            .banner-btn {
                padding: 0.8rem 2rem;
                font-size: 0.9rem;
            }
            
            .banner-icon {
                font-size: 8rem;
            }
            
            /* Mega Menu */
            .mega-menu {
                padding-top: 60px;
            }
            
            .mega-menu-container {
                padding: 1rem;
            }
            
            .mega-menu-category {
                padding: 0.8rem;
                margin-bottom: 0.5rem;
            }
            
            .mega-menu-category-header {
                font-size: 0.95rem;
            }
            
            .mega-menu-subcategory a {
                font-size: 0.85rem;
                padding: 0.3rem 0.4rem;
            }
            
            .mega-menu-offer {
                padding: 0.8rem;
            }
            
            .mega-menu-offer-title {
                font-size: 1rem;
            }
            
            .mega-menu-offer-subtitle {
                font-size: 0.85rem;
            }
            
            .mega-menu-brands {
                display: flex;
                flex-wrap: wrap;
                gap: 0.5rem;
            }
            
            .mega-menu-brand {
                flex: 1;
                min-width: calc(50% - 0.25rem);
                padding: 0.8rem;
                font-size: 0.9rem;
            }
            
            .nav-links {
                top: 55px;
                height: calc(100vh - 55px);
            }
        }