   body { font-family: 'Inter', sans-serif; background: #fafafa; scroll-behavior: smooth; }
        
        /* Splash Animation */
        .splash-out { 
            opacity: 0; 
            transition: opacity 0.8s ease-out; 
            pointer-events: none; 
            visibility: hidden; 
        }

        /* Nav Switcher Logic */
        #pre-header { 
            transition: transform 0.3s ease, opacity 0.3s ease; 
            height: 40px;
            background: black;
            position: relative;
            z-index: 60;
        }
        
        .nav-scrolled #pre-header { 
            transform: translateY(-100%); 
            opacity: 0; 
            pointer-events: none; 
        }
        
        .nav-scrolled #main-nav { 
            transform: translateY(-40px); 
        }

        /* Language Dropdown */
        .language-dropdown {
            position: absolute;
            top: 100%;
            left: 0;
            margin-top: 8px;
            background: white;
            color: black;
            padding: 1rem;
            border-radius: 1rem;
            box-shadow: 0 20px 40px -10px rgba(0,0,0,0.2);
            min-width: 140px;
            opacity: 0;
            visibility: hidden;
            transform: translateY(10px);
            transition: all 0.2s ease;
            z-index: 70;
        }

        .language-trigger:hover .language-dropdown {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        /* Glassmorphism */
        .glass-nav {
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(0,0,0,0.05);
            position: relative;
            z-index: 50;
        }
        .animation-delay-1000 {
    animation-delay: 1s;
}

/* Hover animations for social icons */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.social-icon {
    animation: float 3s ease-in-out infinite;
}

/* Stagger the animations */
.social-icon:nth-child(1) { animation-delay: 0s; }
.social-icon:nth-child(2) { animation-delay: 0.2s; }
.social-icon:nth-child(3) { animation-delay: 0.4s; }
.social-icon:nth-child(4) { animation-delay: 0.6s; }
.social-icon:nth-child(5) { animation-delay: 0.8s; }

        /* Group Card Hover */
        .group-card:hover { box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); }

        /* Mega Menu */
        .mega-menu {
            opacity: 0;
            transform: translateY(-10px);
            pointer-events: none;
            transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
            visibility: hidden;
            position: fixed;
            left: 0;
            right: 0;
            width: 100vw;
            top: 80px;
            z-index: 45;
        }
        
        .mega-menu.active {
            opacity: 1;
            transform: translateY(0);
            pointer-events: auto;
            visibility: visible;
        }

        /* Category hover effects */
        .cat-item {
            transition: all 0.2s ease;
            padding: 0.5rem;
            border-radius: 0.75rem;
        }
        .cat-item:hover {
            background: rgba(0,0,0,0.02);
            transform: translateX(5px);
        }

        /* Product card hover */
        .product-card {
            transition: all 0.3s ease;
        }
        .product-card:hover {
            transform: translateY(-4px);
        }

        /* Carousel */
        .carousel-container {
            position: relative;
            overflow: hidden;
            border-radius: 1.5rem;
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
            height: 500px;
        }

        .carousel-track {
            display: flex;
            width: 400%;
            height: 100%;
            transition: transform 0.5s ease-in-out;
        }

        .carousel-item {
            flex: 0 0 25%;
            position: relative;
            height: 100%;
        }

        .carousel-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .carousel-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.2) 100%);
        }

        .carousel-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 48px;
            height: 48px;
            background: rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(8px);
            border: 1px solid rgba(255, 255, 255, 0.3);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 30;
            transition: all 0.2s ease;
            color: white;
        }

        .carousel-arrow:hover {
            background: rgba(255, 255, 255, 0.4);
            transform: translateY(-50%) scale(1.1);
        }

        .carousel-arrow.left { left: 20px; }
        .carousel-arrow.right { right: 20px; }

        .carousel-indicator {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.4);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .carousel-indicator.active {
            background: white;
            transform: scale(1.2);
        }

        /* Back to Top */
        #back-to-top { 
            opacity: 0; 
            visibility: hidden; 
            transition: all 0.4s ease; 
            position: fixed;
            bottom: 30px;
            right: 30px;
            z-index: 50;
            background: white;
            width: 56px;
            height: 56px;
            border-radius: 50%;
            box-shadow: 0 10px 30px -10px rgba(0,0,0,0.2);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            border: 1px solid rgba(0,0,0,0.05);
        }
        
        #back-to-top.show { 
            opacity: 1; 
            visibility: visible; 
        }

        #back-to-top:hover {
            background: black;
            color: white;
            transform: translateY(-5px);
        }

        @keyframes shimmer { 
            0% { transform: translateX(-100%); } 
            100% { transform: translateX(100%); } 
        }

        /* Search bar focus */
        .search-input:focus {
            outline: none;
            box-shadow: 0 0 0 2px rgba(0,0,0,0.05);
        }

        /* Logo fix */
        .logo-text {
            font-size: 2rem;
            line-height: 1;
            letter-spacing: -0.03em;
        }

        @media (min-width: 768px) {
            .logo-text {
                font-size: 2.25rem;
            }
        }

        /* MODAL STYLES - Premium version */
        .modal-overlay {
            position: fixed;
            inset: 0;
            background: rgba(0, 0, 0, 0.5);
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
            z-index: 100;
            display: none;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .modal-overlay.active {
            display: flex;
            opacity: 1;
        }

        .modal-content {
            width: 100%;
            max-width: 420px;
            margin: 1rem;
            transform: scale(0.95) translateY(20px);
            opacity: 0;
            transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .modal-overlay.active .modal-content {
            transform: scale(1) translateY(0);
            opacity: 1;
        }

        /* Modal Glass Card */
        .modal-glass {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.8);
            border-radius: 2.5rem;
            padding: 2rem;
            box-shadow: 0 40px 100px -20px rgba(0,0,0,0.2);
            position: relative;
        }

        .modal-close {
            position: absolute;
            top: 1rem;
            right: 1rem;
            width: 2.5rem;
            height: 2.5rem;
            background: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.2s ease;
            border: 1px solid rgba(0,0,0,0.05);
        }

        .modal-close:hover {
            background: black;
            color: white;
            transform: scale(1.1);
        }

        /* Tab Slider for modal */
        .tab-slider {
            transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        }
        
        .tab-btn {
            transition: color 0.3s ease;
        }

        /* Input fields for modal */
        .input-field {
            border-bottom: 2px solid #e2e8f0;
            transition: all 0.2s ease;
            width: 100%;
            padding: 0.75rem 0;
            background: transparent;
            font-size: 1rem;
            font-weight: 500;
        }
        .input-field:focus {
            border-bottom-color: #000;
            outline: none;
        }
        .input-field::placeholder {
            color: #e2e8f0;
        }

        /* Password strength */
        #strength-bar {
            transition: width 0.3s ease, background-color 0.3s ease;
        }

        /* Fade animations */
        .fade-in {
            animation: fadeIn 0.4s forwards;
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }

        /* Hide utility */
        .hidden-element {
            display: none !important;
        }

        /* Background blobs for modal */
        .blob {
            position: absolute;
            border-radius: 50%;
            filter: blur(80px);
            z-index: -1;
            opacity: 0.4;
        }

        /* Custom scrollbar */
        ::-webkit-scrollbar {
            width: 8px;
            height: 8px;
        }
        ::-webkit-scrollbar-track {
            background: #f1f1f1;
        }
        ::-webkit-scrollbar-thumb {
            background: #cbd5e1;
            border-radius: 4px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: #94a3b8;
        }

        /* Right Sidebar Styles */
        .right-sidebar {
            position: fixed;
            top: 0;
            right: 0;
            width: 100%;
            max-width: 400px;
            height: 100vh;
            background: white;
            z-index: 200;
            transform: translateX(100%);
            transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
            box-shadow: -10px 0 30px -10px rgba(0,0,0,0.1);
            display: flex;
            flex-direction: column;
        }

        .right-sidebar.active {
            transform: translateX(0);
        }

        .sidebar-header {
            padding: 1.5rem;
            border-bottom: 1px solid #f1f5f9;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .sidebar-content {
            flex: 1;
            overflow-y: auto;
            padding: 1.5rem;
        }

        .sidebar-footer {
            padding: 1.5rem;
            border-top: 1px solid #f1f5f9;
        }

        .sidebar-close {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.2s ease;
        }

        .sidebar-close:hover {
            background: #f1f5f9;
        }

        .cart-item {
            display: flex;
            gap: 1rem;
            padding: 1rem;
            border-radius: 1rem;
            transition: all 0.2s ease;
        }

        .cart-item:hover {
            background: #f8fafc;
        }

        .wishlist-item {
            display: flex;
            gap: 1rem;
            padding: 1rem;
            border-radius: 1rem;
            transition: all 0.2s ease;
        }

        .wishlist-item:hover {
            background: #f8fafc;
        }

        .user-menu-trigger {
            cursor: pointer;
            transition: all 0.2s ease;
        }

        .user-menu-trigger:hover {
            opacity: 0.8;
        }

        .user-dropdown {
            position: absolute;
            top: 100%;
            right: 0;
            margin-top: 8px;
            background: white;
            border-radius: 1rem;
            box-shadow: 0 20px 40px -10px rgba(0,0,0,0.2);
            min-width: 200px;
            opacity: 0;
            visibility: hidden;
            transform: translateY(10px);
            transition: all 0.2s ease;
            z-index: 100;
        }

        .user-dropdown.active {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .dropdown-item {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            padding: 0.75rem 1rem;
            transition: all 0.2s ease;
        }

        .dropdown-item:hover {
            background: #f1f5f9;
        }

        .dropdown-item:first-child {
            border-top-left-radius: 1rem;
            border-top-right-radius: 1rem;
        }

        .dropdown-item:last-child {
            border-bottom-left-radius: 1rem;
            border-bottom-right-radius: 1rem;
        }

        .notification-badge {
            position: absolute;
            top: -2px;
            right: -2px;
            background: #ef4444;
            color: white;
            font-size: 10px;
            font-weight: bold;
            width: 18px;
            height: 18px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* BLUR EFFECT when cart or wishlist is opened */
        .blur-main {
            filter: blur(4px);
            transition: filter 0.3s ease;
            pointer-events: none;
            user-select: none;
        }