
        :root {
            --primary-color: #330867;
            --secondary-color: #ec4899;
            --dark-bg: #1f2937;
            --light-bg: #f9fafb;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: #333;
            overflow-x: hidden;
        }

        /* Sticky Header */
        .sticky-header {
            position: sticky;
            top: 0;
            z-index: 1000;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            padding: 10px 0;
        }

        .nav-icons i {
            font-size: 1.2rem;
            margin-left: 15px;
            cursor: pointer;
            position: relative;
        }

        .badge-count {
            position: absolute;
            top: -8px;
            right: -8px;
            background: var(--secondary-color);
            color: white;
            font-size: 0.6rem;
            border-radius: 50%;
            padding: 2px 5px;
        }

        /* Hero Section */
        .hero-section {
           background: linear-gradient(135deg, #30cfd0 0%, #330867 100%);

            color: white;
            padding: 100px 0;
            position: relative;
            overflow: hidden;
        }

        .hero-section::before {
            content: '';
            position: absolute;
            top: 0; left: 0; width: 100%; height: 100%;
            background: url('https://www.transparenttextures.com/patterns/cubes.png');
            opacity: 0.1;
        }

        .hero-content {
            position: relative;
            z-index: 2;
        }

        .hero-btn {
            background: white;
            color: var(--primary-color);
            font-weight: bold;
            padding: 10px 25px;
            border-radius: 30px;
            transition: transform 0.3s;
            border: none;
            margin: 5px;
        }

        .hero-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }

        .hero-btn.secondary {
            background: transparent;
            border: 2px solid white;
            color: white;
        }

        /* About Section */
        .about-card {
            text-align: center;
            padding: 20px;
            border-radius: 10px;
            background: white;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: transform 0.3s;
            height: 100%;
        }

        .about-card:hover {
            transform: translateY(-5px);
        }

        .about-icon {
            font-size: 2.5rem;
            color: var(--primary-color);
            margin-bottom: 15px;
        }

        /* Product Section */
        .category-title {
            border-left: 5px solid var(--primary-color);
            padding-left: 15px;
            margin: 40px 0 20px;
            font-weight: 700;
            text-transform: uppercase;
            color: var(--dark-bg);
        }

        .product-card {
            border: none;
            border-radius: 10px;
            overflow: hidden;
            background: white;
            box-shadow: 0 2px 8px rgba(0,0,0,0.05);
            transition: all 0.3s ease;
            height: 100%;
        }

        .product-card:hover {
            box-shadow: 0 10px 25px rgba(0,0,0,0.15);
            transform: translateY(-5px);
        }

        .product-img-container {
            height: 200px;
            overflow: hidden;
            background: #f8f9fa;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .product-img {
            max-height: 100%;
            max-width: 100%;
            object-fit: contain;
            transition: transform 0.3s;
        }

        .product-card:hover .product-img {
            transform: scale(1.1);
        }

        .product-price {
            color: var(--primary-color);
            font-weight: bold;
            font-size: 1.2rem;
        }

        .btn-cart {
            background: var(--primary-color);
            color: white;
            border: none;
            width: 100%;
            padding: 8px;
            border-radius: 5px;
            margin-top: 10px;
        }

        .btn-cart:hover {
            background: #4338ca;
        }

        .btn-wishlist {
            background: transparent;
            border: 1px solid #ddd;
            color: #666;
            width: 100%;
            padding: 8px;
            border-radius: 5px;
            margin-top: 5px;
        }

        .btn-wishlist:hover {
            border-color: var(--secondary-color);
            color: var(--secondary-color);
        }

        /* Top Categories Grid */
        .category-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 15px;
            margin: 30px 0;
        }

        .category-item {
            background: white;
            padding: 20px;
            text-align: center;
            border-radius: 10px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.05);
            cursor: pointer;
            transition: 0.3s;
            border: 1px solid #eee;
        }

        .category-item:hover {
            background: var(--primary-color);
            color: white;
            border-color: var(--primary-color);
        }

        /* Features Section */
        .feature-box {
            background: var(--light-bg);
            padding: 20px;
            border-radius: 8px;
            text-align: center;
            margin-bottom: 15px;
        }

        .feature-box i {
            font-size: 2rem;
            color: var(--secondary-color);
            margin-bottom: 10px;
        }

        /* Cart & Checkout */
        .cart-summary {
            background: white;
            padding: 20px;
            border-radius: 10px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        }

        .cart-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 10px 0;
            border-bottom: 1px solid #eee;
        }

        /* Countdown */
        .countdown-banner {
            background: #fff3cd;
            color: #856404;
            padding: 10px;
            text-align: center;
            font-weight: bold;
            border-bottom: 1px solid #ffeeba;
        }

        /* Footer */
        footer {
            background: var(--dark-bg);
            color: white;
            padding: 50px 0 20px;
        }

        footer a {
            color: #d1d5db;
            text-decoration: none;
            display: block;
            margin-bottom: 8px;
            transition: color 0.3s;
        }

        footer a:hover {
            color: white;
        }

        .social-icons a {
            display: inline-block;
            margin-right: 15px;
            font-size: 1.2rem;
        }

        /* Modals */
        .modal-content {
            border-radius: 10px;
        }

        /* Animations */
        .fade-in {
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.6s ease-out, transform 0.6s ease-out;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Toast */
        .toast-container {
            z-index: 2000;
        }
    