   
        :root {
            --primary: #13578b;
            --secondary: #8cbbd2;
            --accent: #2d7ba0;
            --light: #e6f2fa;
            --dark: #1a2c3a;
            --text: #333333;
            --white: #FFFFFF;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Montserrat', sans-serif;
            /* background-color: var(--light); */
            color: var(--text);
            line-height: 1.6;
        }

        /* Header Styles */
        .top-bar {
            background-color: var(--dark);
            color: var(--light);
            padding: 0.5rem 0;
            font-size: 0.9rem;
        }

        .top-bar-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 1rem;
        }

        .top-links a {
            color: var(--light);
            text-decoration: none;
            margin-left: 1rem;
            transition: color 0.3s;
        }

        .top-links a:hover {
            color: var(--secondary);
        }

        header {
            background-color: var(--white);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            position: sticky;
            top: 0;
            z-index: 100;
        }

        .header-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            height: 90px;
            justify-content: space-between;
            align-items: center;
            padding: 1rem;
        }

        .logo {
            display: flex;
            align-items: center;
        }

        .logo h1 {
            font-family: 'Playfair Display', serif;
            color: var(--primary);
            font-size: 1.8rem;
            font-weight: 600;
        }

        .logo p {
            color: var(--accent);
            font-size: 0.8rem;
            margin-left: 0.5rem;
            letter-spacing: 1px;
        }

        .search-bar {
            flex: 1;
            margin: 0 2rem;
            position: relative;
        }

        .search-bar input {
            width: 100%;
            padding: 0.8rem 1rem;
            border: 1px solid #ddd;
            border-radius: 30px;
            font-family: 'Montserrat', sans-serif;
            padding-left: 3rem;
        }

        .search-bar i {
            position: absolute;
            left: 1.2rem;
            top: 50%;
            transform: translateY(-50%);
            color: var(--primary);
        }

        .user-actions a {
            color: var(--dark);
            margin-left: 1.5rem;
            font-size: 1.2rem;
            transition: color 0.3s;
            text-decoration: none;
        }

        .user-actions a:hover {
            color: var(--primary);
        }

        /* Navigation */
        nav {
            background-color: var(--primary);
        }

        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
        }

        .main-nav {
            display: flex;
            list-style: none;
        }

        .main-nav li {
            position: relative;
        }

        .main-nav li a {
            display: block;
            color: var(--light);
            text-decoration: none;
            padding: 1rem 1.5rem;
            font-weight: 500;
            transition: background-color 0.3s;
        }

        .main-nav li a:hover {
            background-color: var(--accent);
        }

        .dropdown-menu {
            position: absolute;
            top: 100%;
            left: 0;
            background-color: var(--white);
            min-width: 200px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s;
            z-index: 10;
        }

        .main-nav li:hover .dropdown-menu {
            opacity: 1;
            visibility: visible;
        }

        .dropdown-menu li a {
            color: var(--dark);
            padding: 0.8rem 1.5rem;
            border-bottom: 1px solid #eee;
        }

        .dropdown-menu li a:hover {
            background-color: var(--light);
            color: var(--primary);
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('https://rukminim2.flixcart.com/image/850/1000/xif0q/sari/e/7/p/free-aayna1188-blue-ramjay-unstitched-original-imagajrhucq3vmc4.jpeg?q=90&crop=false') center/cover no-repeat;
            height: 100vh;
            display: flex;
            align-items: center;
            color: var(--white);
            text-align: center;
            position: relative;
        }

        .hero-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 2rem;
            width: 100%;
        }

        .hero h2 {
            font-family: 'Playfair Display', serif;
            font-size: 3rem;
            margin-bottom: 1rem;
            font-weight: 600;
        }

        .hero p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        .btn {
            display: inline-block;
            background: var(--primary);
            color: white;
            border: none;
            padding: 12px 30px;
            font-size: 1rem;
            font-weight: 500;
            border-radius: 4px;
            cursor: pointer;
            transition: all 0.3s;
            text-transform: uppercase;
            letter-spacing: 1px;
            text-decoration: none;
        }

        .btn:hover {
            background: var(--accent);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }

        /* Features Section */
        .features {
            /* padding: 4rem 0; */
            background-color: #dce8ee;
        }

        .features-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            padding: 0 1rem;
        }

        .feature-item {
            /* background: rgb(197 226 240); */
            text-align: center;
            padding: 1.5rem;
                 /* MARGIN-TOP: 20%; */
    /* box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1); */
    transition: transform 0.3s;
    /* margin-bottom: 45px; */
        }

        .feature-item i {
            font-size: 2.5rem;
            color: var(--primary);
            margin-bottom: 1rem;
        }

        .feature-item h3 {
            font-family: 'Playfair Display', serif;
            margin-bottom: 0.5rem;
            color: var(--dark);
        }

        /* Categories Section */
        .categories {
            padding: 4rem 0;
        }

        .section-title {
            text-align: center;
            margin-bottom: 3rem;
        }

        .section-title h2 {
            font-family: 'Playfair Display', serif;
            font-size: 2.5rem;
            color: var(--dark);
            position: relative;
            display: inline-block;
        }

        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background-color: var(--primary);
        }

        .categories-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            padding: 0 1rem;
        }

        .category-card {
            position: relative;
            overflow: hidden;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s;
        }

        .category-card:hover {
            transform: translateY(-10px);
        }

        .category-img {
            height: 300px;
            overflow: hidden;
        }

        .category-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }

        .category-card:hover .category-img img {
            transform: scale(1.1);
        }

        .category-content {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
            padding: 1.5rem;
            color: var(--white);
        }

        .category-content h3 {
            font-family: 'Playfair Display', serif;
            margin-bottom: 0.5rem;
            font-size: 1.5rem;
        }

        /* New Arrivals */
        .new-arrivals {
            padding: 4rem 0;
            background-color: var(--white);
        }

        .products-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            padding: 0 1rem;
        }

        .product-card {
            background-color: var(--white);
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s;
        }

        .product-card:hover {
            transform: translateY(-10px);
        }

        .product-img {
            height: 300px;
            overflow: hidden;
            position: relative;
        }

        .product-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }

        .product-card:hover .product-img img {
            transform: scale(1.05);
        }

        .product-badge {
            position: absolute;
            top: 10px;
            right: 10px;
            background-color: #e83e8c;
            color: var(--white);
            padding: 0.3rem 0.8rem;
            border-radius: 30px;
            font-size: 0.8rem;
            font-weight: 500;
        }

        .product-content {
            padding: 1.5rem;
        }

        .product-content h3 {
            font-family: 'Playfair Display', serif;
            margin-bottom: 0.5rem;
            color: var(--dark);
        }

        .price {
            display: flex;
            align-items: center;
            margin-bottom: 1rem;
        }

        .current-price {
            font-weight: 600;
            color: var(--primary);
            font-size: 1.2rem;
        }

        .original-price {
            text-decoration: line-through;
            color: #999;
            margin-left: 0.5rem;
            font-size: 0.9rem;
        }

        .discount {
            color: #e74c3c;
            font-weight: 600;
            margin-left: 0.5rem;
            font-size: 0.9rem;
        }

        .product-actions {
            display: flex;
            justify-content: space-between;
        }

        .add-to-cart {
            /* background-color: var(--primary); */
            color: var(--white);
            border: none;
            padding: 0.5rem 1rem;
            border-radius: 4px;
            cursor: pointer;
            transition: background-color 0.3s;
            flex: 1;
            margin-right: 0.5rem;
        }

        .add-to-cart:hover {
            background-color: var(--accent);
        }

        .wishlist {
            background-color: #f5f5f5;
            /* color: var(--primary);    */
            /* border: 1px solid var(--primary); */
            padding: 0.5rem;
            border-radius: 4px;
            cursor: pointer;
            transition: all 0.3s;
        }

        .wishlist:hover {
            /* background-color: var(--primary); */
            color: var(--white);
        }

        /* App Banner */
        .app-banner {
            background-color: var(--dark);
            color: var(--white);
            padding: 3rem 0;
            margin: 4rem 0;
        }

        .app-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            padding: 0 1rem;
        }

        .app-content {
            flex: 1;
        }

        .app-content h2 {
            font-family: 'Playfair Display', serif;
            font-size: 2rem;
            margin-bottom: 1rem;
        }

        .app-content p {
            margin-bottom: 1.5rem;
            max-width: 500px;
        }

        .app-buttons {
            display: flex;
            gap: 1rem;
        }

        .app-btn {
            display: flex;
            align-items: center;
            background-color: var(--white);
            color: var(--dark);
            padding: 0.5rem 1rem;
            border-radius: 5px;
            text-decoration: none;
            transition: transform 0.3s;
        }

        .app-btn:hover {
            transform: translateY(-3px);
        }

        .app-btn i {
            font-size: 1.8rem;
            margin-right: 0.5rem;
        }

        .app-btn span {
            font-size: 0.7rem;
        }

        .app-btn strong {
            display: block;
            font-size: 1rem;
        }

        .app-image {
            flex: 1;
            text-align: center;
        }

        .app-image img {
            max-width: 300px;
        }

        /* Footer */
        footer {
            background-color: var(--dark);
            color: var(--light);
            padding: 4rem 0 2rem;
        }

        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            padding: 0 1rem;
        }

        .footer-col h3 {
            font-family: 'Playfair Display', serif;
            font-size: 1.3rem;
            margin-bottom: 1.5rem;
            position: relative;
            padding-bottom: 0.5rem;
        }

        .footer-col h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 2px;
            background-color: var(--primary);
        }

        .footer-col ul {
            list-style: none;
        }

        .footer-col ul li {
            margin-bottom: 0.8rem;
        }

        .footer-col ul li a {
            color: var(--light);
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-col ul li a:hover {
            color: var(--secondary);
        }

        .social-links {
            display: flex;
            gap: 1rem;
            margin-top: 1rem;
        }

        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            color: var(--light);
            transition: all 0.3s;
        }

        .social-links a:hover {
            background-color: var(--primary);
            transform: translateY(-3px);
        }

        .newsletter input {
            width: 100%;
            padding: 0.8rem;
            border: none;
            border-radius: 4px;
            margin-bottom: 1rem;
            font-family: 'Montserrat', sans-serif;
        }

        .newsletter .btn {
            width: 100%;
            padding: 0.8rem;
            font-size: 0.9rem;
        }

        .copyright {
            text-align: center;
            padding-top: 2rem;
            margin-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.9rem;
        }

        /* Responsive Styles */
        @media (max-width: 992px) {
            .header-container {
                flex-direction: column;
            }

            .logo {
                margin-bottom: 1rem;
            }

            .logo p {
                display: none;
            }

            .search-bar {
                margin: 1rem 0;
                width: 100%;
            }

            .user-actions {
                margin-top: 1rem;
            }

            .app-container {
                flex-direction: column;
                text-align: center;
            }

            .app-content {
                margin-bottom: 2rem;
            }

            .app-buttons {
                justify-content: center;
            }
        }

        @media (max-width: 768px) {
            .hero h2 {
                font-size: 2.2rem;
            }

            .hero p {
                font-size: 1rem;
            }

            .nav-container {
                overflow-x: auto;
                white-space: nowrap;
                padding: 0.5rem 0;
            }

            .main-nav {
                display: inline-flex;
            }

            .main-nav li a {
                padding: 0.8rem 1rem;
            }

            .dropdown-menu {
                position: static;
                opacity: 1;
                visibility: visible;
                box-shadow: none;
                display: none;
            }

            .main-nav li:hover .dropdown-menu {
                display: block;
            }

            .user-actions {
                display: none;
            }
        }

        @media (max-width: 576px) {
            .top-bar-container {
                flex-direction: column;
                text-align: center;
            }

            .top-links {
                margin-top: 0.5rem;
            }

            .top-links a {
                margin: 0 0.5rem;
            }

            .hero {
                height: 60vh;
            }

            .hero h2 {
                font-size: 1.8rem;
            }

            .btn {
                padding: 0.8rem 1.5rem;
            }

            .app-buttons {
                flex-direction: column;
            }

            .app-btn {
                justify-content: center;
            }
        }

        /* Hidden checkbox to toggle sidebar */
        .nav-toggle {
            display: none;
        }

        /* Hamburger icon */
        .hamburger {
            display: none;
            font-size: 2rem;
            color: #faf3e6;
            cursor: pointer;
            position: absolute;
            top: 0;
            right: 1.5rem;
            z-index: 1001;
        }

        /* Sidebar Navigation - Mobile View */
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }

            .header-container {
                flex-direction: row;
                align-items: center;
                padding: 1vw 2vw;
            }
            .logo{
                margin-bottom: 0;
            }

            nav {
                position: fixed;
                top: 0;
                left: 0;
                width: 250px;
                height: 100%;
                background-color: var(--primary);
                transform: translateX(-100%);
                transition: transform 0.3s ease;
                z-index: 1000;
                padding-top: 4rem;
            }

            .nav-container {
                flex-direction: column;
            }

            .main-nav {
                flex-direction: column;
                list-style: none;
                padding: 0;
            }

            .main-nav li a {
                color: white;
                padding: 1rem 2rem;
                display: block;
                border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            }

            .main-nav li a:hover {
                background-color: var(--accent);
            }

            /* Submenu in mobile */
            .main-nav li .dropdown-menu {
                display: none;
                background: rgba(0, 0, 0, 0.1);
            }

            .main-nav li:hover .dropdown-menu {
                display: block;
            }

            /* Show sidebar when checkbox is checked */
            .nav-toggle:checked+.hamburger+nav {
                transform: translateX(0);
            }
        }
    


        /* Additional background patterns */
body {
    background-color: #dce8ee;
}

.section-with-pattern {
    background-color: #f9f9ff;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(74,0,224,0.03) 0%, rgba(74,0,224,0.03) 90%),
        radial-gradient(circle at 90% 80%, rgba(232,62,140,0.03) 0%, rgba(232,62,140,0.03) 90%);
    background-size: 200% 200%;
    animation: gradientBG 15s ease infinite;
}

@keyframes gradientBG {
    0% { background-position: 0% 0%; }
    50% { background-position: 100% 100%; }
    100% { background-position: 0% 0%; }
}



.feature-item {
        background:rgb(223 245 255);
    padding: 30px 20px;
    border-radius: 8px;
        box-shadow: 9px 7px 9px 2px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-align: center;
    border-color: 1px solid #ddd;
    /* border-style: dotted; */
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.feature-item i {
    font-size: 2.5rem;
    /* color: #4a00e0; */
    margin-bottom: 1rem;
}

.feature-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #333;
}


/* Dropdown Menu Styles */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: white;
    min-width: 200px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 100;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .dropdown-menu {
        position: static;
        display: none;
        box-shadow: none;
        background-color: transparent;
        padding-left: 20px;
    }
    
    .dropdown:hover .dropdown-menu {
        display: block;
    }
    
    .dropdown-menu li a {
        color: white !important;
        padding: 0.8rem 1rem !important;
        border-bottom: none !important;
    }
    
    .dropdown-menu li a:hover {
        background-color: rgba(255, 255, 255, 0.1) !important;
    }
}


/* Mobile-specific styles */
@media (max-width: 768px) {
    .desktop-only {
        display: none !important;
    }
    
    .mobile-only {
        display: block !important;
    }
    
    /* Hide the regular filter toggle */
    .filter-toggle {
        display: none;
    }
    
    /* Adjust header spacing */
    .header-container {
        justify-content: space-between;
        padding: 1rem;
    }
    
    .logo {
        margin-right: auto;
    }
    
    /* Mobile menu items styling */
    .mobile-only a {
        display: flex;
        align-items: center;
        gap: 10px;
    }
    
    .mobile-only i {
        width: 20px;
        text-align: center;
    }
}

@media (min-width: 769px) {
    .mobile-only {
        display: none !important;
    }
}

/* Hamburger menu adjustments */
@media (max-width: 768px) {
    .hamburger {
        display: block;
        position: absolute;
        top: 50%;
        right: 15px;
        transform: translateY(-50%);
        font-size: 1.5rem;
        color: var(--primary);
    }
    
    nav {
        width: 80%;
        padding-top: 70px;
    }
    
    .main-nav {
        flex-direction: column;
    }
    
    .main-nav li {
        width: 100%;
    }
    
    .main-nav li a {
        padding: 15px 20px;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    
    .dropdown-menu {
        position: static;
        display: none;
        background: rgba(0,0,0,0.1);
        box-shadow: none;
    }
    
    .dropdown-menu li a {
        padding-left: 40px;
    }
}

/* Hide elements on specific pages */
.hide-header-elements .filter-toggle,
.hide-header-elements .desktop-only a,
.hide-header-elements .login-btn {
    display: none !important;
}

/* Hide mobile navigation items on specific pages */
.hide-header-elements .mobile-only {
    display: none !important;
}

/* Specific class for hiding elements */
.hide-element {
    display: none !important;
}


/* Hide elements on specific pages in web view */
.hide-header-elements .filter-toggle,
.hide-header-elements .desktop-only a,
.hide-header-elements .login-btn {
    display: none !important;
}

/* Hide specific mobile navigation items on dashboard/orders pages */
.hide-header-elements .mobile-only[href="filter_products.php"],
.hide-header-elements .mobile-only[href="order_tracker.php"],
.hide-header-elements .mobile-only[href="cart.php"] {
    display: none !important;
}

/* Always show hamburger in mobile view */
@media (max-width: 768px) {
    .hamburger {
        display: block !important;
    }
    
    /* Hide hamburger in web view on specific pages */
    .hide-header-elements .hamburger {
        display: none !important;
    }
}

/* Specific class for hiding elements */
.hide-element {
    display: none !important;
}

/* Mobile User Profile Styles */
.mobile-user-profile {
    padding: 15px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 10px;
    display: none; /* Hidden by default, shown only in mobile */
}

.user-profile-mobile {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    font-weight: 500;
}

.user-profile-mobile i {
    font-size: 1.5rem;
    color: var(--secondary);
}

/* Show mobile user profile only in mobile view */
@media (max-width: 768px) {
    .mobile-user-profile {
        display: block;
    }
    
    /* Adjust the first menu item margin */
    .main-nav > li:first-child {
        margin-top: 0;
    }
}

/* Hide mobile user profile on dashboard/orders pages */
.hide-header-elements .mobile-user-profile {
    display: none !important;
}

