
        /* --- CSS VARIABLES & THEME --- */
        :root {
            /* Luxury Color Palette: Saffron, Golden, Yellow (Ivory/Champagne for bg) */
            --primary-saffron: #C35214;      /* Rich, deep luxury Saffron */
            --secondary-saffron: #9F400C;    /* Darker saffron for depth */
            --accent-gold: #d4af37;          /* Metallic Gold */
            --accent-gold-light: #f3e5ab;    /* Pale Gold */
            --bg-yellow: #fcf9f2;            /* Very pale, warm ivory/yellow */
            --text-dark: #1a1a1a;            /* Used ONLY for text readability */
            --white: #ffffff;
            --wood: #260f00;
            --font-head: 'Cinzel', serif;
            --font-body: 'Lora', serif;
            --transition: all 0.3s ease-in-out;
        }

        /* --- RESET & GLOBAL --- */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: var(--font-body);
            background-color: var(--bg-yellow);
            color: var(--text-dark);
            line-height: 1.6;
            overflow-x: hidden;
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: var(--font-head);
            color: var(--primary-saffron);
            font-weight: 600;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        ul {
            list-style: none;
        }

        /* --- REUSABLE UTILITIES --- */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .section-padding {
            padding: 80px 0;
        }

        .section-title {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 10px;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .section-subtitle {
            text-align: center;
            color: var(--accent-gold);
            font-style: italic;
            margin-bottom: 50px;
            font-size: 1.1rem;
        }

        .btn {
            display: inline-block;
            padding: 12px 30px;
            background-color: var(--accent-gold);
            color: var(--white);
            font-family: var(--font-head);
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            border: 1px solid var(--accent-gold);
            cursor: pointer;
            transition: var(--transition);
        }

        .btn:hover {
            background-color: transparent;
            color: var(--primary-saffron);
            border-color: var(--primary-saffron);
        }

        .btn-outline {
            background-color: transparent;
            border: 1px solid var(--accent-gold);
            color: var(--accent-gold);
        }
        
        .btn-outline:hover {
            background-color: var(--accent-gold);
            color: var(--white);
        }
		
		
		.btnx {
            display: inline-block;
            padding: 12px 30px;
            background-color: var(--accent-gold);
            color: var(--white);
            font-family: var(--font-head);
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            border: 1px solid var(--accent-gold);
            cursor: pointer;
            transition: var(--transition);
        }

        .btnx:hover {
            background-color:var(--white);
            color: var(--primary-saffron);
            border-color: var(--primary-saffron);
        }

        .btnx-outline {
            background-color: transparent;
            border: 1px solid var(--accent-gold);
            color: var(--accent-gold);
        }
        
        .btnx-outline:hover {
            background-color: var(--accent-gold);
            color: var(--white);
        }

        /* Animations */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* --- NAVIGATION --- */
        header {
            position: fixed;
            top: 0;
            width: 100%;
            background-color: rgba(255, 245, 240, 0.95); /* Saffron with slight transparency */
            backdrop-filter: blur(10px);
            z-index: 1000;
            border-bottom: 2px solid var(--accent-gold);
        }

        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 80px;
        }

        .logo {
            font-family: var(--font-head);
            font-size: 2rem;
            color: var(--white);
            font-weight: 700;
            letter-spacing: 2px;
        }

        .nav-links {
            display: flex;
            gap: 30px;
        }

        .nav-links li a {
            color: var(--wood);
            font-family: var(--font-head);
            text-transform: uppercase;
            font-size: 0.9rem;
            letter-spacing: 1px;
            transition: var(--transition);
			font-weight: 600;
        }

        .nav-links li a:hover {
            color: var(--accent-gold);
        }

        .mobile-menu-btn {
            display: none;
            color: var(--wood);
            font-size: 1.5rem;
            cursor: pointer;
        }

        /* --- HERO SECTION --- */
 .hero {
    height: 100vh;
    background: url('../img/banner.png') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: flex-start; 
    padding-left: 10%; 
}

.hero-content {
    max-width: 700px;
    text-align: left;
}

.hero-title {
    color: var(--white); /* White for high contrast */
    font-size: 3rem;
    margin-bottom: 20px;
    line-height: 1.1;
    text-shadow: 2px 4px 15px rgba(0,0,0,0.8); /* Sharp shadow for readability */
}

.hero-text {
    color: var(--white);
    font-size: 1.4rem;
    margin-bottom: 30px;
    font-style: italic;
    text-shadow: 1px 2px 8px rgba(0,0,0,0.8); /* Shadow for readability */
}

        /* --- ABOUT SECTION --- */
        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
        }

        .about-image {
            position: relative;
        }

        .about-image img {
            width: 100%;
            height: auto;
            border: 1px solid var(--accent-gold);
            padding: 10px;
            background-color: var(--white);
        }

        .about-image::after {
            content: '';
            position: absolute;
            top: 20px;
            left: 20px;
            right: -20px;
            bottom: -20px;
            border: 2px solid var(--primary-saffron);
            z-index: -1;
        }

        .about-content h3 {
            font-size: 2rem;
            margin-bottom: 20px;
        }

        .about-content p {
            margin-bottom: 20px;
            color: var(--text-dark);
            text-align: justify;
        }

        /* --- CATEGORIES SECTION --- */
        .categories {
            background-color: var(--primary-saffron);
            color: var(--white);
        }

        .categories .section-title {
            color: var(--accent-gold);
        }

        .categories .section-subtitle {
            color: var(--accent-gold-light);
        }

        .category-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }

        .category-card {
            position: relative;
            overflow: hidden;
            border: 1px solid var(--accent-gold);
            height: 350px;
            cursor: pointer;
        }

        .category-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .category-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            padding: 20px;
            background: linear-gradient(transparent, rgba(195, 82, 20, 0.95));
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
        }

        .category-overlay h4 {
            color: var(--white);
            font-size: 1.2rem;
            margin: 0;
			background-color: #c94903;
            padding: 4px;
            width: 100%;
			text-align:center;
        }

        .category-card:hover img {
            transform: scale(1.1);
        }

        /* --- PRODUCTS GRID (New Arrivals & Best Sellers) --- */
        .product-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 40px;
        }

        .product-card {
            background-color: var(--white);
            border: 1px solid var(--accent-gold-light);
            padding: 15px;
            text-align: center;
            transition: var(--transition);
        }

        .product-card:hover {
            box-shadow: 0 10px 20px rgba(195, 82, 20, 0.15);
            transform: translateY(-5px);
            border-color: var(--accent-gold);
        }

        .product-img {
            width: 100%;
            height: 250px;
            object-fit: cover;
            margin-bottom: 20px;
        }

        .product-title {
            font-size: 1.2rem;
            margin-bottom: 10px;
            color: var(--primary-saffron);
        }

        .product-price {
            color: var(--accent-gold);
            font-weight: bold;
            font-size: 1.1rem;
            font-family: var(--font-head);
            margin-bottom: 15px;
        }

        /* --- TESTIMONIALS --- */
        .testimonials {
            background: linear-gradient(rgba(252, 249, 242, 0.92), rgba(252, 249, 242, 0.92)),
                        url('https://images.unsplash.com/photo-1595514535312-32b70f2eb191?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover fixed;
        }

        .testimonial-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .testimonial-card {
            background-color: var(--white);
            padding: 40px 30px;
            border-top: 4px solid var(--accent-gold);
            position: relative;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }

        .quote-icon {
            color: var(--accent-gold-light);
            font-size: 3rem;
            position: absolute;
            top: 20px;
            left: 20px;
            opacity: 0.5;
        }

        .testimonial-text {
            font-style: italic;
            margin-bottom: 20px;
            position: relative;
            z-index: 1;
        }

        .client-name {
            font-family: var(--font-head);
            color: var(--primary-saffron);
            font-weight: 700;
        }

        /* --- FOOTER --- */
        footer {
            background-color: var(--primary-saffron);
            color: var(--white);
            padding: 60px 0 20px;
            border-top: 5px solid var(--accent-gold);
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-logo {
            color: var(--accent-gold);
            font-size: 2rem;
            margin-bottom: 20px;
            display: block;
        }

        .footer-col h4 {
            color: var(--accent-gold);
            margin-bottom: 20px;
            font-size: 1.2rem;
        }

        .footer-col ul li {
            margin-bottom: 10px;
        }
        
        .footer-col ul li a {
            transition: var(--transition);
        }

        .footer-col ul li a:hover {
            color: var(--accent-gold);
            padding-left: 5px;
        }

        .social-icons {
            display: flex;
            gap: 15px;
        }

        /* Updated Social Icons - Pure White */
        .social-icons a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background-color: transparent;
            border: 1px solid var(--white); /* White border for definition */
            color: var(--white);            /* White icon */
            border-radius: 50%;
            transition: var(--transition);
        }

        .social-icons a:hover {
            background-color: var(--white);
            color: var(--primary-saffron);
            transform: translateY(-3px);
            border-color: var(--white);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(212, 175, 55, 0.3);
            font-size: 0.9rem;
            color: var(--accent-gold-light);
        }

/*--- Product List----*/

.filter-sidebar {
    width: 250px;
    background: var(--white);
    padding: 20px;
    border: 1px solid var(--accent-gold-light);
    height: fit-content;
}

.filter-group { margin-bottom: 20px; }
.filter-group h4 { margin-bottom: 10px; color: var(--primary-saffron); }
.filter-group select { width: 100%; padding: 8px; border: 1px solid var(--accent-gold); }




        /* --- RESPONSIVE DESIGN --- */
        @media (max-width: 992px) {
            .hero-title { font-size: 3rem; }
            .about-grid { grid-template-columns: 1fr; }
            .about-image { margin-bottom: 30px; }
            .hero-content { margin-left: 5%; padding: 40px 30px; }
        }

        @media (max-width: 768px) {
            .nav-links {
                position: fixed;
                top: 80px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 80px);
                background-color: var(--primary-saffron);
                flex-direction: column;
                align-items: center;
                justify-content: center;
                transition: var(--transition);
            }

            .nav-links.active {
                left: 0;
            }

            .mobile-menu-btn {
                display: block;
            }

            /* Center Hero Box on small mobile screens */
            .hero {
                justify-content: center;
            }
            .hero-content {
                margin-left: 0;
                margin: 0 20px;
                padding: 30px 20px;
                text-align: center;
            }
            .hero-title { font-size: 2.2rem; }
            .section-title { font-size: 2rem; }
			
			
        }
    