
        :root {
            --primary-color: #00d5c3;
            --secondary-color: #f0f4ff;
            --accent-color: #f7b119;
            --text-color: #1e293b;
            --light-text: #64748b;
            --border-color: #e2e8f0;
            --success-color: #10b981;
            --warning-color: #f59e0b;
            --danger-color: #ef4444;
            --dark-color: #0f172a;
            --gradient-1: linear-gradient(135deg, #00d5c3 0%, #764ba2 100%);
            --gradient-2: linear-gradient(135deg, #00d5c3 0%, #f5576c 100%);
            --gradient-3: linear-gradient(135deg, #00d5c3 0%, #00f2fe 100%);
            --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
            --shadow-md: 0 4px 6px rgba(0,0,0,0.07);
            --shadow-lg: 0 10px 15px rgba(0,0,0,0.1);
            --shadow-xl: 0 20px 25px rgba(0,0,0,0.1);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            line-height: 1.6;
            color: var(--text-color);
            background: linear-gradient(to bottom, #f8fafc, #f1f5f9);
            overflow-x: hidden;
        }

        /* Toast Notification - Updated */
        .toast {
            position: fixed;
            top: 20px;
            right: 20px;
            background: var(--success-color);
            color: white;
            padding: 16px 24px;
            border-radius: 8px;
            box-shadow: var(--shadow-lg);
            display: none; /* Changed from flex to none */
            align-items: center;
            z-index: 9999; /* Increased z-index */
            transform: translateX(120%);
            transition: transform 0.3s ease;
        }

        .toast.show {
            transform: translateX(0);
            display: flex; /* Ensure it's displayed when shown */
        }

        .toast i {
            margin-right: 12px;
            font-size: 20px;
        }

        /* Cart Animation Styles */
        .cart-animation {
            position: fixed;
            z-index: 1000;
            pointer-events: none;
            transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .cart-animation img {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            box-shadow: 0 0 10px rgba(0,0,0,0.3);
        }

        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.2); }
            100% { transform: scale(1); }
        }

        .cart-pulse {
            animation: pulse 0.5s ease-in-out;
        }

        /* Header Styles - Modern Design */
        header {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
            animation: slideDown 0.5s ease-out;
        }

        @keyframes slideDown {
            from {
                transform: translateY(-100%);
                opacity: 0;
            }
            to {
                transform: translateY(0);
                opacity: 1;
            }
        }

        .top-bar {
            background: var(--gradient-1);
            color: white;
            padding: 10px 0;
            font-size: 13px;
        }

        .container {
            max-width: 1350px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .top-bar-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .main-header {
            padding: 20px 0;
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 32px;
            font-weight: 800;
            background: var(--gradient-1);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-decoration: none;
            display: flex;
            align-items: center;
            transition: transform 0.3s ease;
        }

        .logo:hover {
            transform: scale(1.05);
        }

        .logo i {
            margin-right: 12px;
            font-size: 36px;
            background: var(--gradient-1);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .search-bar {
            flex-grow: 1;
            max-width: 500px;
            margin: 0 40px;
            position: relative;
        }

        .search-bar input {
            width: 100%;
            padding: 14px 50px 14px 24px;
            border: 2px solid var(--border-color);
            border-radius: 50px;
            font-size: 15px;
            transition: all 0.3s ease;
            background: var(--secondary-color);
        }

        .search-bar input:focus {
            outline: none;
            border-color: var(--primary-color);
            box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.1);
            background: white;
        }

        .search-bar button {
            position: absolute;
            right: 6px;
            top: 50%;
            transform: translateY(-50%);
            background: var(--gradient-1);
            border: none;
            color: white;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .search-bar button:hover {
            transform: translateY(-50%) scale(1.1);
            box-shadow: var(--shadow-lg);
        }

        .header-actions {
            display: flex;
            align-items: center;
            gap: 24px;
        }

        .header-actions a {
            color: var(--text-color);
            font-size: 22px;
            position: relative;
            transition: all 0.3s ease;
            padding: 8px;
            border-radius: 12px;
        }

        .header-actions a:hover {
            color: var(--primary-color);
            background: var(--secondary-color);
            transform: translateY(-2px);
        }

        .cart-count {
            position: absolute;
            top: -4px;
            right: -4px;
            background: var(--accent-color);
            color: white;
            font-size: 11px;
            width: 20px;
            height: 20px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 600;
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0% {
                box-shadow: 0 0 0 0 rgba(236, 72, 153, 0.7);
            }
            70% {
                box-shadow: 0 0 0 10px rgba(236, 72, 153, 0);
            }
            100% {
                box-shadow: 0 0 0 0 rgba(236, 72, 153, 0);
            }
        }

        /* Navigation Styles - Modern */
        nav {
            background: white;
            border-top: 1px solid var(--border-color);
            padding: 0;
        }

        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 8px;
        }

        .nav-menu li {
            position: relative;
        }

        .nav-menu a {
            display: block;
            color: var(--text-color);
            padding: 16px 20px;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            border-radius: 8px;
            margin: 4px;
        }

        .nav-menu a:hover {
            background: var(--secondary-color);
            color: var(--primary-color);
        }

        .dropdown {
            position: absolute;
            top: 100%;
            left: 0;
            background: white;
            min-width: 220px;
            box-shadow: var(--shadow-xl);
            border-radius: 12px;
            opacity: 0;
            visibility: hidden;
            transform: translateY(10px);
            transition: all 0.3s ease;
            z-index: 100;
            margin-top: 8px;
            border: 1px solid var(--border-color);
            max-height: 400px;
            overflow-y: auto;
        }

        .nav-menu li:hover .dropdown {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .dropdown a {
            color: var(--text-color);
            padding: 14px 24px;
            border-bottom: 1px solid var(--border-color);
            margin: 0;
            border-radius: 0;
        }

        .dropdown a:last-child {
            border-bottom: none;
        }

        .dropdown a:hover {
            background: var(--secondary-color);
            color: var(--primary-color);
        }

        /* Mobile Menu Toggle */
        .menu-toggle {
            display: none;
            color: var(--primary-color);
            font-size: 24px;
            cursor: pointer;
            padding: 8px;
            border-radius: 8px;
            transition: all 0.3s ease;
        }

        .menu-toggle:hover {
            background: var(--secondary-color);
        }

        /* Main Content - Modern Layout */
        main {
            min-height: calc(100vh - 200px);
            padding: 40px 0;
        }

        .page {
            display: none;
            animation: fadeInUp 0.6s ease-out;
        }

        .page.active {
            display: block;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Home Page - Modern Hero */
     


        /* --- HERO SECTION FIX FOR RESPONSIVE --- */

/* For large screens (desktops), make the hero full-width */
@media (min-width: 992px) {
    .hero {
        width: 100vw;
        margin-left: calc(-50vw + 50%);
        margin-right: calc(-50vw + 50%);
        margin-bottom: 50px;
        padding: 0;
    }
}

/* For all screens, ensure the image doesn't overflow */
.hero img {
    display: block;
    width: 100%;
    height: auto;
    max-width: 100vw; /* Prevents image from being wider than the viewport */
    margin-top: -50px;
}

/* For smaller screens (tablets and mobile), keep it within the container padding */
@media (max-width: 991.98px) {
    .hero {
        /* Reset any full-width styles */
        width: auto;
        margin-left: 0;
        margin-right: 0;
        /* Add negative margins to match the container's padding and align with the edge */
        margin-left: -15px; /* Adjust this value to match your container's padding */
        margin-right: -15px; /* Adjust this value to match your container's padding */
    }
}
      

        .hero h1 {
            font-size: 56px;
            font-weight: 800;
            margin-bottom: 24px;
            animation: slideInLeft 0.8s ease-out;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
        }

        .hero p {
            font-size: 22px;
            max-width: 700px;
            margin: 0 auto 40px;
            animation: slideInRight 0.8s ease-out;
            opacity: 0.95;
        }

        @keyframes slideInLeft {
            from {
                transform: translateX(-50px);
                opacity: 0;
            }
            to {
                transform: translateX(0);
                opacity: 1;
            }
        }

        @keyframes slideInRight {
            from {
                transform: translateX(50px);
                opacity: 0;
            }
            to {
                transform: translateX(0);
                opacity: 1;
            }
        }

        .btn {
            display: inline-block;
            padding: 16px 36px;
            background: white;
            color: var(--primary-color);
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            font-size: 16px;
            box-shadow: var(--shadow-lg);
        }

        .btn:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-xl);
        }

        .btn-primary {
            background: var(--gradient-1);
            color: white;
        }

        .btn-secondary {
            background: transparent;
            color: white;
            border: 2px solid white;
        }

        .btn-secondary:hover {
            background: white;
            color: var(--primary-color);
        }

        /* Section Headers */
        .section-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 40px;
        }

        .section-title {
            font-size: 36px;
            font-weight: 800;
            color: var(--text-color);
            position: relative;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 80px;
            height: 4px;
            background: var(--gradient-1);
            border-radius: 2px;
        }

        .view-all-btn {
            color: var(--primary-color);
            text-decoration: none;
            font-weight: 600;
            display: flex;
            align-items: center;
            transition: all 0.3s ease;
        }

        .view-all-btn:hover {
            transform: translateX(5px);
        }

        .view-all-btn i {
            margin-left: 8px;
        }

        /* Exclusive Deals Section */
        .exclusive-deals {
            background: linear-gradient(135deg, #ffecd2 0%, #00c1b1 100%);
            padding: 80px 0;
            border-radius: 24px;
            margin-bottom: 60px;
            position: relative;
            overflow: hidden;
        }

        .exclusive-deals::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
            animation: rotate 30s linear infinite;
        }

        @keyframes rotate {
            from {
                transform: rotate(0deg);
            }
            to {
                transform: rotate(360deg);
            }
        }

       .exclusive-deals .section-header {
    display: flex;
    justify-content: center; /* horizontal centering */
    align-items: center;     /* vertical centering if needed */
    width: 100%;
}

.exclusive-deals .section-title {
    margin: 0;
    color: var(--text-color);
}


        .exclusive-deals .section-title::after {
            background: var(--gradient-2);
        }

        .deals-timer {
            text-align: center;
            margin-bottom: 50px;
            position: relative;
            z-index: 1;
        }

        .deals-timer h3 {
            font-size: 28px;
            color: var(--text-color);
            margin-bottom: 20px;
            font-weight: 700;
        }

        .timer-display {
            display: flex;
            justify-content: center;
            gap: 20px;
        }

        .timer-unit {
            background: white;
            padding: 20px;
            border-radius: 12px;
            box-shadow: var(--shadow-md);
            min-width: 80px;
        }

        .timer-value {
            font-size: 36px;
            font-weight: 800;
            color: var(--accent-color);
            display: block;
        }

        .timer-label {
            font-size: 14px;
            color: var(--light-text);
            text-transform: uppercase;
            margin-top: 5px;
        }

        /* Products Section - Modern Cards */
        .products {
            margin-bottom: 60px;
        }

        .product-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 32px;
            margin-top: 50px;
        }

        .product-card {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: var(--shadow-md);
            transition: all 0.4s ease;
            border: 1px solid var(--border-color);
            display: flex;
            flex-direction: column;
            height: 100%;
        }

        .product-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-xl);
            border-color: var(--primary-color);
        }

        .product-image {
            position: relative;
            height: 240px;
            overflow: hidden;
            background: var(--secondary-color);
        }

        .product-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .product-card:hover .product-image img {
            transform: scale(1.1);
        }

        .product-badge {
            position: absolute;
            top: 16px;
            right: 16px;
            background: var(--accent-color);
            color: white;
            padding: 6px 14px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .product-content {
            padding: 24px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }

        .product-title {
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            max-width: 100%;
            display: block;
            min-height: 2.4em; /* Reserve space for 2 lines of text */
            font-size: 18px;
            font-weight: 600;
            color: var(--text-color);
            margin-bottom: 12px;
            line-height: 1.4;
        }

        .product-price {
            font-size: 24px;
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 16px;
        }

        .product-rating {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }

        .product-rating i {
            color: #fbbf24;
            margin-right: 4px;
        }

        .product-rating span {
            margin-left: 12px;
            color: var(--light-text);
            font-size: 14px;
        }

        .add-to-cart {
            width: 100%;
            padding: 14px;
            background: var(--gradient-1);
            color: white;
            border: none;
            border-radius: 12px;
            cursor: pointer;
            font-weight: 600;
            transition: all 0.3s ease;
            font-size: 16px;
            margin-top: auto;
        }

        .add-to-cart:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-lg);
        }

        /* Blog Section - Modern Cards */
        .blog-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
            gap: 32px;
            margin-top: 50px
        }

        .blog-card {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: var(--shadow-md);
            transition: all 0.4s ease;
            border: 1px solid var(--border-color);
        }

        .blog-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-xl);
            border-color: var(--primary-color);
        }

        .blog-image {
            height: 220px;
            overflow: hidden;
            background: var(--secondary-color);
        }

        .blog-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .blog-card:hover .blog-image img {
            transform: scale(1.1);
        }

        .blog-content {
            padding: 28px;
        }

        .blog-meta {
            display: flex;
            align-items: center;
            margin-bottom: 16px;
            color: var(--light-text);
            font-size: 14px;
        }

        .blog-meta i {
            margin-right: 6px;
        }

        .blog-meta span {
            margin-right: 20px;
        }

        .blog-title {
            font-size: 22px;
            margin-bottom: 12px;
            color: var(--text-color);
            font-weight: 600;
            line-height: 1.4;
        }

        .blog-excerpt {
            color: var(--light-text);
            margin-bottom: 20px;
            line-height: 1.6;
        }

        .read-more {
            color: var(--primary-color);
            font-weight: 600;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            transition: all 0.3s ease;
        }

        .read-more:hover {
            transform: translateX(5px);
        }

        .read-more i {
            margin-left: 8px;
            transition: transform 0.3s ease;
        }

        .read-more:hover i {
            transform: translateX(3px);
        }

        /* About Page - Modern Layout */
        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            margin-bottom: 60px;
        }

        .about-text h2 {
            font-size: 42px;
            margin-bottom: 24px;
            color: var(--text-color);
            font-weight: 800;
        }

        .about-text p {
            margin-bottom: 24px;
            color: var(--light-text);
            line-height: 1.8;
            font-size: 16px;
        }

        .about-image {
            border-radius: 20px;
            overflow: hidden;
            box-shadow: var(--shadow-xl);
            transform: perspective(1000px) rotateY(-5deg);
            transition: transform 0.5s ease;
        }

        .about-image:hover {
            transform: perspective(1000px) rotateY(0deg);
        }

        .about-image img {
            width: 100%;
            height: auto;
            display: block;
        }

        .features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 32px;
            margin-top: 60px;
        }

        .feature-card {
            background: white;
            padding: 40px 30px;
            border-radius: 20px;
            text-align: center;
            box-shadow: var(--shadow-md);
            transition: all 0.4s ease;
            border: 1px solid var(--border-color);
        }

        .feature-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-xl);
            border-color: var(--primary-color);
        }

        .feature-icon {
            font-size: 56px;
            background: var(--gradient-1);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 24px;
        }

        .feature-card h3 {
            font-size: 24px;
            margin-bottom: 16px;
            color: var(--text-color);
            font-weight: 600;
        }

        .feature-card p {
            color: var(--light-text);
            line-height: 1.6;
        }

        /* Contact Page - Modern Layout */
        .contact-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            margin-top: 50px;
        }

        .contact-info {
            background: white;
            padding: 40px;
            border-radius: 20px;
            box-shadow: var(--shadow-md);
            border: 1px solid var(--border-color);
        }

        .contact-info h2 {
            font-size: 32px;
            margin-bottom: 32px;
            color: var(--text-color);
            font-weight: 700;
        }

        .contact-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 32px;
        }

        .contact-item i {
            font-size: 24px;
            color: var(--primary-color);
            margin-right: 20px;
            width: 30px;
            margin-top: 4px;
        }

        .contact-form {
            background: white;
            padding: 40px;
            border-radius: 20px;
            box-shadow: var(--shadow-md);
            border: 1px solid var(--border-color);
        }

        .contact-form h2 {
            font-size: 32px;
            margin-bottom: 32px;
            color: var(--text-color);
            font-weight: 700;
        }

        .form-group {
            margin-bottom: 24px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: var(--text-color);
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 14px;
            border: 2px solid var(--border-color);
            border-radius: 12px;
            font-size: 16px;
            transition: all 0.3s ease;
            background: var(--secondary-color);
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--primary-color);
            box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.1);
            background: white;
        }

        .form-group textarea {
            resize: vertical;
            min-height: 140px;
        }

        /* Newsletter Page - Modern Design */
        .newsletter {
            background: var(--gradient-2);
            color: white;
            padding: 80px 0;
            border-radius: 24px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .newsletter::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
            animation: rotate 30s linear infinite;
        }

        .newsletter h2 {
            font-size: 42px;
            margin-bottom: 20px;
            font-weight: 800;
            position: relative;
            z-index: 1;
        }

        .newsletter p {
            font-size: 20px;
            max-width: 600px;
            margin: 0 auto 40px;
            opacity: 0.95;
            position: relative;
            z-index: 1;
        }

        .newsletter-form {
            display: flex;
            flex-direction: column;
            max-width: 500px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
            gap: 16px;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
        }

        .newsletter-form input {
            padding: 16px 24px;
            border: none;
            border-radius: 12px;
            font-size: 16px;
            background: rgba(255, 255, 255, 0.95);
        }

        .newsletter-form button {
            padding: 16px 32px;
            background: var(--dark-color);
            color: white;
            border: none;
            border-radius: 12px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .newsletter-form button:hover {
            background: var(--text-color);
            transform: translateY(-2px);
        }

        .checkbox-group {
            display: flex;
            align-items: flex-start;
            gap: 8px;
        }

        .checkbox-group input[type="checkbox"] {
            margin-top: 4px;
            width: 18px;
            height: 18px;
        }

        .checkbox-group label {
            font-size: 14px;
            line-height: 1.4;
        }

        /* Policy Pages - Modern Layout */
        .policy-content {
            background: white;
            padding: 50px;
            border-radius: 20px;
            box-shadow: var(--shadow-md);
            border: 1px solid var(--border-color);
        }

        .policy-content h2 {
            font-size: 36px;
            margin-bottom: 24px;
            color: var(--text-color);
            font-weight: 700;
        }

        .policy-content h3 {
            font-size: 26px;
            margin-top: 36px;
            margin-bottom: 16px;
            color: var(--text-color);
            font-weight: 600;
        }

        .policy-content p {
            margin-bottom: 24px;
            line-height: 1.8;
            color: var(--light-text);
            font-size: 16px;
        }

        .policy-content ul {
            margin-left: 30px;
            margin-bottom: 24px;
        }

        .policy-content li {
            margin-bottom: 12px;
            color: var(--light-text);
            line-height: 1.6;
        }

        /* Cart Styles - Modern Design */
        .cart-container {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 40px;
            margin-top: 50px;
        }

        .cart-items {
            background: white;
            padding: 40px;
            border-radius: 20px;
            box-shadow: var(--shadow-md);
            border: 1px solid var(--border-color);
        }

        .cart-item {
            display: flex;
            align-items: center;
            padding: 24px 0;
            border-bottom: 1px solid var(--border-color);
        }

        .cart-item:last-child {
            border-bottom: none;
        }

        .cart-item-image {
            width: 120px;
            height: 120px;
            border-radius: 12px;
            overflow: hidden;
            margin-right: 24px;
            box-shadow: var(--shadow-sm);
        }

        .cart-item-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .cart-item-details {
            flex-grow: 1;
        }

        .cart-item-title {
            font-size: 20px;
            margin-bottom: 12px;
            color: var(--text-color);
            font-weight: 600;
        }

        .cart-item-price {
            font-size: 18px;
            color: var(--primary-color);
            font-weight: 600;
            margin-bottom: 16px;
        }

        .cart-item-quantity {
            display: flex;
            align-items: center;
        }

        .quantity-btn {
            width: 36px;
            height: 36px;
            border: 2px solid var(--border-color);
            background: white;
            border-radius: 8px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            font-weight: 600;
        }

        .quantity-btn:hover {
            background: var(--secondary-color);
            border-color: var(--primary-color);
            color: var(--primary-color);
        }

        .quantity-value {
            width: 60px;
            text-align: center;
            margin: 0 16px;
            font-weight: 600;
        }

        .remove-item {
            color: var(--danger-color);
            cursor: pointer;
            margin-left: 24px;
            transition: all 0.3s ease;
            font-size: 20px;
        }

        .remove-item:hover {
            color: #dc2626;
            transform: scale(1.1);
        }

        .cart-summary {
            background: white;
            padding: 40px;
            border-radius: 20px;
            box-shadow: var(--shadow-md);
            border: 1px solid var(--border-color);
            height: fit-content;
            position: sticky;
            top: 100px;
        }

        .cart-summary h3 {
            font-size: 28px;
            margin-bottom: 32px;
            color: var(--text-color);
            font-weight: 700;
        }

        .summary-row {
            display: flex;
            justify-content: space-between;
            margin-bottom: 20px;
            font-size: 16px;
        }

        .summary-row.total {
            font-size: 22px;
            font-weight: 700;
            color: var(--primary-color);
            padding-top: 24px;
            border-top: 2px solid var(--border-color);
        }

        .checkout-btn {
            width: 100%;
            padding: 16px;
            background: var(--gradient-1);
            color: white;
            border: none;
            border-radius: 12px;
            font-size: 18px;
            font-weight: 600;
            cursor: pointer;
            margin-top: 32px;
            transition: all 0.3s ease;
        }

        .checkout-btn:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-lg);
        }

        /* Checkout Page - Modern Design */
        .checkout-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
        }

        .checkout-form {
            background: white;
            padding: 40px;
            border-radius: 20px;
            box-shadow: var(--shadow-md);
            border: 1px solid var(--border-color);
        }

        .checkout-form h2 {
            font-size: 32px;
            margin-bottom: 32px;
            color: var(--text-color);
            font-weight: 700;
        }

        .order-summary {
            background: white;
            padding: 40px;
            border-radius: 20px;
            box-shadow: var(--shadow-md);
            border: 1px solid var(--border-color);
            height: fit-content;
            position: sticky;
            top: 100px;
        }

        .order-summary h2 {
            font-size: 28px;
            margin-bottom: 32px;
            color: var(--text-color);
            font-weight: 700;
        }

        .order-item {
            display: flex;
            align-items: center;
            padding: 16px 0;
            border-bottom: 1px solid var(--border-color);
        }

        .order-item-image {
            width: 80px;
            height: 80px;
            border-radius: 8px;
            overflow: hidden;
            margin-right: 16px;
        }

        .order-item-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .order-item-details {
            flex-grow: 1;
        }

        .order-item-title {
            font-size: 16px;
            margin-bottom: 6px;
            color: var(--text-color);
            font-weight: 500;
        }

        .order-item-price {
            font-size: 14px;
            color: var(--light-text);
        }

        .order-item-quantity {
            color: var(--light-text);
            font-weight: 500;
        }

        .payment-methods {
            margin-top: 32px;
        }

        .payment-method {
            display: flex;
            align-items: center;
            padding: 20px;
            border: 2px solid var(--border-color);
            border-radius: 12px;
            margin-bottom: 16px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .payment-method:hover {
            border-color: var(--primary-color);
            background: var(--secondary-color);
        }

        .payment-method input[type="radio"] {
            margin-right: 16px;
            width: 20px;
            height: 20px;
            cursor: pointer;
        }

        .payment-method label {
            display: flex;
            align-items: center;
            cursor: pointer;
            width: 100%;
        }

        .payment-method i {
            font-size: 28px;
            margin-right: 16px;
            color: var(--primary-color);
        }

        .payment-method span {
            font-weight: 500;
            font-size: 16px;
        }

        #credit-card-form {
            margin-top: 24px;
            padding-top: 24px;
            border-top: 1px solid var(--border-color);
        }

        /* Order Confirmation - Beautiful Animation */
        .order-confirmation {
            background: white;
            padding: 60px;
            border-radius: 24px;
            box-shadow: var(--shadow-xl);
            text-align: center;
            max-width: 700px;
            margin: 0 auto;
            position: relative;
            overflow: hidden;
        }

        .order-confirmation::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(16, 185, 129, 0.1) 0%, transparent 70%);
            animation: rotate 20s linear infinite;
        }

        .confirmation-icon {
            font-size: 100px;
            color: var(--success-color);
            margin-bottom: 32px;
            position: relative;
            z-index: 1;
            animation: scaleIn 0.6s ease-out;
        }

        @keyframes scaleIn {
            from {
                transform: scale(0);
                opacity: 0;
            }
            to {
                transform: scale(1);
                opacity: 1;
            }
        }

        .order-confirmation h2 {
            font-size: 42px;
            margin-bottom: 20px;
            color: var(--text-color);
            font-weight: 800;
            position: relative;
            z-index: 1;
            animation: slideInUp 0.6s ease-out 0.2s both;
        }

        @keyframes slideInUp {
            from {
                transform: translateY(30px);
                opacity: 0;
            }
            to {
                transform: translateY(0);
                opacity: 1;
            }
        }

        .order-confirmation p {
            font-size: 18px;
            color: var(--light-text);
            margin-bottom: 40px;
            position: relative;
            z-index: 1;
            animation: slideInUp 0.6s ease-out 0.4s both;
        }

        .order-details {
            background: var(--secondary-color);
            padding: 32px;
            border-radius: 16px;
            text-align: left;
            margin-bottom: 40px;
            position: relative;
            z-index: 1;
            animation: slideInUp 0.6s ease-out 0.6s both;
        }

        .order-details h3 {
            font-size: 24px;
            margin-bottom: 24px;
            color: var(--text-color);
            font-weight: 600;
        }

        .detail-row {
            display: flex;
            justify-content: space-between;
            margin-bottom: 16px;
            padding-bottom: 16px;
            border-bottom: 1px solid var(--border-color);
        }

        .detail-row:last-child {
            border-bottom: none;
            margin-bottom: 0;
            padding-bottom: 0;
        }

        .detail-label {
            font-weight: 600;
            color: var(--text-color);
        }

        .detail-value {
            color: var(--light-text);
        }

        .confetti {
            position: absolute;
            width: 10px;
            height: 10px;
            background: var(--accent-color);
            animation: confetti-fall 3s ease-out forwards;
        }

        @keyframes confetti-fall {
            0% {
                transform: translateY(-100vh) rotate(0deg);
                opacity: 1;
            }
            100% {
                transform: translateY(100vh) rotate(720deg);
                opacity: 0;
            }
        }

        /* Footer - 4 Column Layout */
        footer {
            background: var(--dark-color);
            color: white;
            padding: 80px 0 30px;
            margin-top: 100px;
            position: relative;
        }

        footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: var(--gradient-1);
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 40px;
            margin-bottom: 50px;
        }

        .footer-column h3 {
            font-size: 22px;
            margin-bottom: 24px;
            position: relative;
            padding-bottom: 12px;
            font-weight: 600;
        }

        .footer-column h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 3px;
            background: var(--gradient-1);
            border-radius: 2px;
        }

        .footer-column p {
            color: #94a3b8;
            margin-bottom: 24px;
            line-height: 1.8;
        }

        .footer-column ul {
            list-style: none;
        }

        .footer-column ul li {
            margin-bottom: 14px;
        }

        .footer-column ul li a {
            color: #94a3b8;
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
        }

        .footer-column ul li a:hover {
            color: white;
            transform: translateX(5px);
        }

        .footer-column ul li a i {
            margin-right: 8px;
            font-size: 14px;
        }

        .social-links {
            display: flex;
            gap: 16px;
            margin-top: 24px;
        }

        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 44px;
            height: 44px;
            background: rgba(255, 255, 255, 0.1);
            color: white;
            border-radius: 50%;
            transition: all 0.3s ease;
        }

        .social-links a:hover {
            background: var(--gradient-1);
            transform: translateY(-5px);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #94a3b8;
            grid-column: 1 / -1;
        }

        /* Empty Cart Message */
        .empty-cart {
            text-align: center;
            padding: 60px 20px;
            color: var(--light-text);
        }

        .empty-cart i {
            font-size: 80px;
            color: var(--border-color);
            margin-bottom: 20px;
        }

        .empty-cart h3 {
            font-size: 24px;
            margin-bottom: 10px;
            color: var(--text-color);
        }

        .empty-cart p {
            margin-bottom: 30px;
        }

        /* Responsive Styles */
        @media (max-width: 992px) {
            .nav-menu {
                position: fixed;
                top: 0;
                left: -100%;
                width: 80%;
                height: 100vh;
                background: white;
                flex-direction: column;
                justify-content: flex-start;
                padding-top: 80px;
                transition: left 0.3s ease;
                z-index: 999;
                box-shadow: var(--shadow-xl);
            }

            .nav-menu.active {
                left: 0;
            }

            .menu-toggle {
                display: block;
            }

            .dropdown {
                position: static;
                opacity: 1;
                visibility: visible;
                transform: none;
                box-shadow: none;
                background: var(--secondary-color);
                margin-top: 8px;
                border-radius: 8px;
            }

            .dropdown a {
                padding-left: 40px;
            }

            .search-bar {
                display: none;
            }

            .about-content,
            .contact-content,
            .checkout-container {
                grid-template-columns: 1fr;
            }

            .cart-container {
                grid-template-columns: 1fr;
            }

            .form-row {
                grid-template-columns: 1fr;
            }

            .hero h1 {
                font-size: 42px;
            }

            .hero p {
                font-size: 18px;
            }

            /* Footer responsive for tablet */
            .footer-content {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .hero h1 {
                font-size: 36px;
            }

            .hero p {
                font-size: 16px;
            }

            .product-grid {
                grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            }

            .features {
                grid-template-columns: 1fr;
            }

            .newsletter-form {
                flex-direction: column;
            }

            .newsletter-form input {
                border-radius: 50px;
                margin-bottom: 16px;
            }

            .newsletter-form button {
                border-radius: 50px;
            }

            .section-title {
                font-size: 32px;
            }

            .policy-content {
                padding: 30px;
            }

            /* Footer responsive for mobile */
            .footer-content {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .timer-display {
                flex-wrap: wrap;
            }
        }

        @media (max-width: 576px) {
            .product-grid {
                grid-template-columns: 1fr;
            }

            .cart-item {
                flex-direction: column;
                text-align: center;
            }

            .cart-item-image {
                margin-right: 0;
                margin-bottom: 16px;
            }

            .cart-item-quantity {
                justify-content: center;
            }

            .remove-item {
                margin-left: 0;
                margin-top: 16px;
            }
        }






        /* --- Newsletter Form: Left-Align Labels Only --- */

/* Select only the labels that are direct children of a form-group */
#newsletter .newsletter-form .form-group > label {
    text-align: left;
    display: block; /* Ensures the label is on its own line above the input */
}



/* Left-align only email and DOB labels in unsubscribe form */
#unsubscribe .form-group > label:not([for="unsubscribe-confirm"]) {
    text-align: left;
    display: block;
}