@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap");
        :root {
            --primary: #6a1b9a;
            --primary-hover: #4a148c;
            --background: #f5f5f5;
            --text: #333;
            --nav-background: rgba(245, 245, 245, 0.95);
        }

        /* 
        There is this theme also. 
        [data-theme="dark"] {
            --primary: #9c27b0;
            --primary-hover: #6a1b9a;
            --background: #121212;
            --text: #ffffff;
            --nav-background: rgba(18, 18, 18, 0.95);
        } */


        [data-theme="dark"] {
            /* Base Colors */
            --primary: #bb86fc;        /* Material Deep Purple 200 */
            --primary-hover: #9b5cff;  /* More vibrant purple */
            --background: #121212;     /* Material Dark background */
            --text: #e0e0e0;           /* Off-white for better readability */
            --nav-background: rgba(33, 33, 33, 0.98); /* Darker navigation */
            
            /* New Additions for Depth */
            --surface: #1e1e1e;        /* Surface color for cards */
            --surface-hover: #2d2d2d;  /* Hover state for elements */
            --card: #242424;           /* Card background */
            --text-secondary: #9e9e9e; /* Secondary text */
            --divider: rgba(255, 255, 255, 0.12);
            
            /* Effects */
            --shadow-intensity: 0.15;
            --glow-opacity: 0.1;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            transition: all 0.3s ease;
        }

        body {
            font-family: 'Segoe UI', sans-serif;
            background-color: var(--background);
            color: var(--text);
            line-height: 1.6;
        }

        /* Navigation */
        .navbar {
            position: fixed;
            top: 0;
            width: 100%;
            background: var(--nav-background);
            backdrop-filter: blur(10px);
            padding: 1rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }

        .nav-links {
            display: flex;
            gap: 2rem;
        }

        .nav-links a {
            color: var(--text);
            text-decoration: none;
            padding: 0.5rem 1rem;
            border-radius: 4px;
        }

        .nav-links a:hover {
            background: var(--primary);
            color: white;
        }

        .theme-toggle {
            background: transparent;
            border: none;
            padding: 0rem;
            border-radius: 50%;
            cursor: pointer;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .theme-toggle i {
            font-size: 1.5rem;
            color: var(--text); /* Use text color variable */
            transition: color 0.3s ease;
        }

        .bx-sun { display: none; }
        .bx-moon { display: block; }

        [data-theme="dark"] .bx-sun { display: block; }
        [data-theme="dark"] .bx-moon { display: none; }

        .theme-toggle:hover i {
            opacity: 0.8;
        }
        /* Sections */
        section {
            padding: 5rem 2rem;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
        }
    /* About Section Styles */
    .about {
        padding: 6rem 2rem 4rem;
        background: var(--background);
    }

    .about-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
        max-width: 1200px;
        width: 100%;
        margin: 0 auto;
    }

    .about-card {
        background: var(--surface);
        padding: 2.5rem 2rem;
        border-radius: 12px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, var(--shadow-intensity));
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        display: flex;
        flex-direction: column;
        height: 100%;
        text-align: center;
    }

    .about-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 15px rgba(0, 0, 0, calc(var(--shadow-intensity) + 0.05));
    }

    .card-icon {
        width: 64px;
        height: 64px;
        background: rgba(var(--text), 0.1);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 1.5rem;
        transition: all 0.3s ease;
        flex-shrink: 0;
    }

    .card-icon i {
        font-size: 2rem;
        color: var(--text);
    }

    .about-card:hover .card-icon {
        background: rgba(var(--primary-rgb), 0.2);
        transform: scale(1.05);
    }

    .about-card h2 {
        color: var(--primary);
        font-size: 1.4rem;
        margin-bottom: 1.2rem;
        line-height: 1.3;
        flex-grow: 1;
    }

    .about-card p {
        color: var(--text-secondary);
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 0;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
        .about {
            padding: 5rem 1.5rem 3rem;
        }
        
        .about-grid {
            grid-template-columns: 1fr;
            gap: 1.5rem;
        }
        
        .about-card {
            padding: 2rem 1.5rem;
        }
        
        .card-icon {
            width: 56px;
            height: 56px;
            margin-bottom: 1rem;
        }
        
        .card-icon i {
            font-size: 1.75rem;
        }
        
        .about-card h2 {
            font-size: 1.3rem;
        }
    }

    @media (max-width: 480px) {
        .card-icon {
            width: 48px;
            height: 48px;
        }
        
        .card-icon i {
            font-size: 1.5rem;
        }
        
        .about-card h2 {
            font-size: 1.2rem;
        }
        
        .about-card p {
            font-size: 0.9rem;
        }
    }


        /* Section Headings */
    .section-heading {
        text-align: center;
        margin-bottom: 3rem;
        position: relative;
        padding-bottom: 1rem;
    }

    .section-heading h1 {
        font-size: clamp(1.75rem, 5vw, 2.5rem);
        color: var(--text);
        margin-bottom: 1rem;
        line-height: 1.2;
        font-weight: 700;
    }

    .section-heading::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 3px;
        background-color: var(--primary);
        border-radius: 2px;
    }

    /* Hover effect for interactive feel */
    .section-heading:hover::after {
        width: 120px;
        transition: all 0.3s ease;
    }

    /* Responsive Adjustments */
    @media (max-width: 768px) {
        .section-heading {
            margin-bottom: 2rem;
        }
        
        .section-heading h1 {
            font-size: 2rem;
        }
    }

    @media (max-width: 480px) {
        .section-heading h1 {
            font-size: 1.5rem;
        }
        
        .section-heading::after {
            width: 60px;
            height: 2px;
        }
    }
        
        /* Container styling for better centering (optional) */
        .image-container {
            display: flex;
            justify-content: center;
            align-items: center;
            min-height: 50vh; /* Adjust based on your needs */
            padding: 20px;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        /* Responsive adjustments */
        @media (max-width: 768px) {
            .image-container {
                min-height: 40vh;
                padding: 15px;
            }
            
            .carton {
                max-width: 90%;
            }
        }
        
        @media (max-width: 480px) {
            .image-container {
                min-height: 30vh;
                padding: 10px;
            }
            
            .carton {
                max-width: 95%;
                border-radius: 4px;
            }
        }
        
        /* Products Grid */
        .products-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .product-card {
            background: var(--nav-background);
            padding: 1.5rem;
            border-radius: 10px;
            text-align: center;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }

        .product-card:hover {
            transform: translateY(-5px);
        }

        .product-image {
            width: 100%;
            height: 200px;
            object-fit: cover;
            border-radius: 8px;
            margin-bottom: 1rem;
        }
        .price {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            font-size: 1.8rem;
            font-weight: 700;
            color: #1a1a1a;
            margin: 1.2rem 0;
            position: relative;
            display: inline-block;
        }
        
        /* Optional: Add currency symbol styling */
        .price::before {
            display: block;
            font-size: 0.65em;
            font-weight: 400;
            color: #666;
            margin-bottom: 2px;
        }
        
        /* For discounted prices */
        .price.original {
            color: #999;
            text-decoration: line-through;
            font-size: 1.2rem;
            margin-right: 0.5rem;
        }
        
        .price.sale {
            color: #4F7942;
            font-size: 1.8rem;
        }
        
        /* Price container for original + sale price */
        .price-wrapper {
            display: flex;
            align-items: baseline;
            gap: 0.8rem;
            margin: 1.5rem 0;
        }
        
        /* Hover effect */
        .product-card:hover .price {
            transform: scale(1.02);
            transition: transform 0.2s ease-in-out;
        }
        
        /* Currency symbol styling */
        .price span:first-child {
            font-size: 0.8em;
            opacity: 0.8;
            margin-right: 2px;
        }
        
        /* Mobile responsiveness */
        @media (max-width: 768px) {
            .price {
                font-size: 1.5rem;
            }
            .price.sale {
                font-size: 1.5rem;
            }
        }
        .buy-button {
            background: var(--primary);
            color: white;
            padding: 0.8rem 2rem;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            font-size: 1rem;
            margin-top: 1rem;
        }

        .buy-button:hover {
            background: var(--primary-hover);
            transform: scale(1.05);
        }

        /* Footer */
        footer {
            text-align: center;
            padding: 2rem;
            background: var(--nav-background);
        }

        @media (max-width: 768px) {
            .products-grid {
                grid-template-columns: 1fr;
            }

            .nav-links {
                display: none;
            }

            section {
                padding: 7rem 1rem;
            }
        }


        