        body {
            box-sizing: border-box;
            font-family: 'Poppins', sans-serif;
        }
        
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease;
        }
        
        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        .slide-in-left {
            opacity: 0;
            transform: translateX(-50px);
            transition: all 0.8s ease;
        }
        
        .slide-in-left.visible {
            opacity: 1;
            transform: translateX(0);
        }
        
        .slide-in-right {
            opacity: 0;
            transform: translateX(50px);
            transition: all 0.8s ease;
        }
        
        .slide-in-right.visible {
            opacity: 1;
            transform: translateX(0);
        }
        
        .hero-bg {
            background: linear-gradient(135deg, #a0c4ff 0%, #bdb2ff 50%, #ffc6ff 100%);
        }
        
        .card-hover {
            transition: all 0.3s ease;
        }
        
        .card-hover:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(160, 196, 255, 0.3);
        }
        
        .product-card img {
            transition: transform 0.3s ease;
        }
        
        .product-card:hover img {
            transform: scale(1.05);
        }
        
        .testimonial-card {
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(240, 248, 255, 0.9) 100%);
            backdrop-filter: blur(10px);
        }
        
        .nav-link {
            position: relative;
            transition: color 0.3s ease;
        }
        
        .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 50%;
            background: linear-gradient(90deg, #a0c4ff, #bdb2ff);
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }
        
        .nav-link:hover::after {
            width: 100%;
        }
        
        .parallax {
            background-attachment: fixed;
            background-position: center;
            background-repeat: no-repeat;
            background-size: cover;
        }
        
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .animate-fade-in-up {
            opacity: 0;
            animation: fadeInUp 0.8s ease-out forwards;
        }
        
        .typewriter {
            overflow: hidden;
            white-space: nowrap;
            border-right: 3px solid rgba(255, 255, 255, 0.8);
            animation: typing 2s steps(20, end), blink-caret 1s step-end infinite;
        }
        
        .typewriter-2 {
            overflow: hidden;
            white-space: nowrap;
            border-right: 3px solid rgba(255, 255, 255, 0.6);
            animation: typing-2 2.5s steps(25, end) 2.2s both, blink-caret-2 1s step-end infinite 2.2s;
            opacity: 0;
        }
        
        .typewriter-tagline {
            overflow: hidden;
            white-space: nowrap;
            animation: typing-tagline 2s steps(30, end) 4.8s both;
            opacity: 0;
        }
        
        .typewriter-description {
            overflow: hidden;
            animation: typing-description 3s ease-out 6.5s both;
            opacity: 0;
        }
        
        .typewriter-buttons {
            opacity: 0;
            transform: translateY(20px);
            animation: fadeInButtons 0.8s ease-out 9s both;
        }
        
        .typewriter-stats {
            opacity: 0;
            transform: translateY(20px);
            animation: fadeInStats 1s ease-out 9.5s both;
        }
        
        @keyframes typing {
            from { width: 0; }
            to { width: 100%; }
        }
        
        @keyframes typing-2 {
            from { width: 0; opacity: 1; }
            to { width: 100%; opacity: 1; }
        }
        
        @keyframes typing-tagline {
            from { width: 0; opacity: 1; }
            to { width: 100%; opacity: 1; }
        }
        
        @keyframes typing-description {
            from { 
                max-height: 0; 
                opacity: 0;
                transform: translateY(10px);
            }
            to { 
                max-height: 200px; 
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes fadeInButtons {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes fadeInStats {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes blink-caret {
            from, to { border-color: transparent; }
            50% { border-color: rgba(255, 255, 255, 0.8); }
        }
        
        @keyframes blink-caret-2 {
            from, to { border-color: transparent; }
            50% { border-color: rgba(255, 255, 255, 0.6); }
        }
        
        /* Remove caret after animation completes */
        .typewriter.animation-complete {
            border-right: none;
        }
        
        .typewriter-2.animation-complete {
            border-right: none;
        }
        
        .modal {
            display: none;
            position: fixed;
            z-index: 1000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0,0,0,0.5);
            backdrop-filter: blur(5px);
        }
        
        .modal.show {
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .cart-badge {
            position: absolute;
            top: -8px;
            right: -8px;
            background: linear-gradient(135deg, #ef4444, #dc2626);
            color: white;
            border-radius: 50%;
            width: 20px;
            height: 20px;
            font-size: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 600;
        }
        
        .cart-item {
            transition: all 0.3s ease;
        }
        
        .cart-item:hover {
            background-color: #f8fafc;
        }
        
        .page-content {
            display: none;
        }
        
        .page-content.active {
            display: block;
        }
        
        .image-placeholder {
            background: linear-gradient(45deg, #f0f9ff, #e0f2fe);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #64748b;
            font-size: 0.875rem;
        }
        
        @media (max-width: 768px) {
            .hero-bg h1 {
                font-size: 2.5rem;
            }
            .hero-bg p {
                font-size: 1.125rem;
            }
        }
    