 /* CSS Variables */
        :root {
            --ivory: #f1ebf0;
            --accent: #211832;
            --taupe: #A8907C;
            --charcoal: #211832;
            --grey: #211832;
            --button-hover: #291f3d;
            --footer-bg: #EAE6E1;
            --button-color: #2d2344;
        }

        /* Global Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Montserrat', sans-serif;
            background-color: var(--ivory);
            color: var(--charcoal);
            line-height: 1.6;
            overflow-x: hidden;
        }

        h1, h2, h3, h4, h5 {
            font-family: 'Playfair Display', serif;
            font-weight: 500;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
        }

        section {
            padding: 80px 0;
        }

        .section-title {
            text-align: center;
            margin-bottom: 50px;
            font-size: 2.5rem;
            position: relative;
        }

        .section-title::after {
            content: '';
            display: block;
            width: 60px;
            height: 2px;
            background-color: var(--accent);
            margin: 15px auto;
        }

        .btn {
            display: inline-block;
            padding: 12px 30px;
            background-color: var(--button-color);
            color: white;
            border-radius: 35px;
            font-weight: 500;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            font-family: 'Montserrat', sans-serif;
        }

        .btn:hover {
            background-color: var(--accent);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        /* Header Styles */
        header {
            background-color: var(--ivory);
            padding: 15px 0;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        }

        .header-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 15px;
        }

        .logo {
            font-family: 'Playfair Display', serif;
            font-size: 1.8rem;
            font-weight: 600;
            color: var(--accent);
        }

        .search-container {
            position: relative;
            width: 300px;
            margin: 0 auto;
        }

        .search-input {
            width: 100%;
            padding: 10px 45px 10px 20px;
            border: 1px solid #ddd;
            border-radius: 30px;
            font-family: 'Montserrat', sans-serif;
            outline: none;
            transition: all 0.3s ease;
            background-color: white;
        }

        .search-input:focus {
            border-color: var(--accent);
            box-shadow: 0 0 0 2px rgba(159, 123, 72, 0.2);
        }

        .search-btn {
            position: absolute;
            right: 15px;
            top: 50%;
            transform: translateY(-50%);
            background: none;
            border: none;
            color: var(--grey);
            cursor: pointer;
            font-size: 1rem;
        }

        .header-icons {
            display: flex;
            gap: 20px;
        }

        .icon {
            font-size: 1.2rem;
            transition: color 0.3s ease;
            cursor: pointer;
        }

        .icon:hover {
            color: var(--accent);
        }

        .nav-links {
            display: flex;
            list-style: none;
            justify-content: center;
            gap: 40px;
            padding-top: 10px;
            border-top: 1px solid rgba(0, 0, 0, 0.05);
        }

        .nav-links a {
            font-weight: 500;
            transition: color 0.3s ease;
            position: relative;
            font-size: 1rem;
        }

        .nav-links a:hover {
            color: var(--accent);
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 0;
            background-color: var(--accent);
            transition: width 0.3s ease;
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: var(--charcoal);
        }

        /* Hero Section */
        .hero {
            height: 75vh;
            display: flex;
            align-items: center;
            position: relative;
            background:  url("images/1.png") no-repeat center center/cover;
            margin-top: 120px;
        }

        .hero-content {
            max-width: 600px;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 1s forwards 0.5s;
        }

        .hero h1 {
            font-size: 2.5rem;
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .hero p {
            font-size: 1.4rem;
            margin-bottom: 30px;
            color: var(--grey);
        }

        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
     /* Collection Section */
     .collection {
            padding: 4rem 5%;
        }

        .section-heading {
            font-family: 'Playfair Display', serif;
            font-size: 2.2rem;
            font-weight: 600;
            text-align: center;
            margin-bottom: 3rem;
            color: var(--primary-text);
        }

        .products-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
        }

        .product-card {
            background-color: var(--white);
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            border: 1px solid var(--card-border);
            display: flex;
            flex-direction: column;
            opacity: 0;
            transform: translateY(20px);
            animation: fadeInUp 0.6s ease forwards;
        }

        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .product-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(159, 123, 72, 0.15);
        }

        .product-image-container {
            position: relative;
            width: 100%;
            padding-top: 100%;
             /* Creates a square aspect ratio */
            overflow: hidden;
        }

        .product-image {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .product-card:hover .product-image {
            transform: scale(1.05);
        }

        .product-info {
            padding: 1.5rem;
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .product-name {
            font-family: 'Playfair Display', serif;
            font-size: 1.3rem;
            margin-bottom: 0.5rem;
            color: var(--primary-text);
        }

        .product-description {
            font-size: 0.85rem;
            color: var(--secondary-text);
            margin-bottom: 1rem;
            line-height: 1.5;
        }

        .product-price {
            font-weight: 500;
            color: var(--primary-accent);
            font-size: 1.2rem;
            margin-bottom: 1rem;
        }

        .product-review {
            display: flex;
            align-items: center;
            margin-bottom: 1.5rem;
        }

        .stars {
            color: var(--primary-accent);
            margin-right: 0.5rem;
        }

        .review-count {
            font-size: 0.85rem;
            color: var(--secondary-text);
        }

        .product-actions {
            display: flex;
            gap: 0.8rem;
        }

        .btn {
            padding: 0.7rem 1.2rem;
            border: none;
            border-radius: 4px;
            font-family: 'Poppins', sans-serif;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
            text-align: center;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
        }

        .btn-primary {
            background-color: var(--button-color);
            color: var(--white);
            flex: 1;
        }

        .btn-primary:hover {
            background-color: var(--accent);
        }

        .btn-icon {
            background-color: transparent;
            border: 1px solid var(--secondary-accent);
            color: var(--accent);
            width: 45px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .btn-icon:hover {
            background-color: var(--ivory);
            color: var(--white);
        }

        /* Load More Button */
        .load-more {
            text-align: center;
            margin-top: 3rem;
        }

        .load-more-btn {
            background-color: var(--white);
            color: var(--primary-text);
            border: 1px solid var(--card-border);
            padding: 0.8rem 2rem;
            font-size: 1rem;
            transition: all 0.3s ease;
        }

        .load-more-btn:hover {
            background-color: var(--button-color);
            color: var(--white);
            border-color: var(--accent);
        }    

/* ENHANCED: Footer Section */
footer {
            background-color: var(--warm-beige);
            padding: 70px 0 30px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 40px;
            margin-bottom: 50px;
        }

        .footer-column h3 {
            font-family: 'Playfair Display', serif;
            font-size: 1.3rem;
            margin-bottom: 20px;
            color: var(--deep-charcoal);
        }

        .footer-logo {
            font-family: 'Playfair Display', serif;
            font-size: 1.8rem;
            font-weight: 600;
            color: var(--accent);
            margin-bottom: 15px;
        }

        .footer-tagline {
            font-family: 'Montserrat', sans-serif;
            font-size: 1.1rem;
            color: var(--grey);
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: var(--grey);
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: var(--accent);
        }

        .contact-info {
            color: var(--grey);
        }

        .contact-info p {
            margin-bottom: 10px;
        }

        .social-icons {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .social-icons a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background-color: var(--soft-ivory);
            border-radius: 50%;
            color: var(--deep-charcoal);
            transition: all 0.3s ease;
        }

        .social-icons a:hover {
            background-color: var(--accent);
            color: var(--white);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(168, 144, 124, 0.3);
            color: var(--grey);
            font-size: 0.9rem;
        }

        /* Additional variables for enhanced sections */
        :root {
            --soft-ivory: #F7F5F2;
            --gold-accent: #9F7B48;
            --warm-taupe: #A8907C;
            --deep-charcoal: #1E1E1E;
            --soft-grey: #5A5A5A;
            --gold-beige: #A8907C;
            --soft-gold: #BFA150;
            --warm-beige: #EAE6E1;
            --white: #FFFFFF;
        }

        /* Animation Classes */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.5s ease, transform 0.5s ease;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Responsive Styles */
       



        @media (max-width: 1024px) {
            .category-grid, .products-grid {
                grid-template-columns: repeat(3, 1fr);
            }
            
            .testimonials-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .footer-content {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .nav-links, .search-container {
                display: none;
            }
            
            .mobile-menu-btn {
                display: block;
            }
            
            .category-grid, .products-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .testimonials-grid {
                grid-template-columns: 1fr;
            }
            
            .about-content, .contact-container {
                grid-template-columns: 1fr;
            }
            
            .hero h1 {
                font-size: 2.5rem;
            }
            
            .hero {
                margin-top: 80px;
            }
            
            .newsletter-form {
                flex-direction: column;
            }
            
            .newsletter-form input {
                border-radius: 2px;
                margin-bottom: 10px;
            }
            
            .newsletter-form button {
                border-radius: 2px;
                width: 100%;
            }
        }

        @media (max-width: 480px) {
            .category-grid, .products-grid {
                grid-template-columns: 1fr;
            }
            
            .footer-links {
                flex-direction: column;
                gap: 15px;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .footer-content {
                grid-template-columns: 1fr;
            }
        }



        @media (max-width: 1024px) {
            .products-grid {
                grid-template-columns: repeat(3, 1fr);
            }
            
            .footer-content {
                grid-template-columns: repeat(2, 1fr);
            }
        }


        @media (max-width: 480px) {
            .products-grid {
                grid-template-columns: 1fr;
            }
            
            .product-actions {
                flex-direction: column;
            }
            
            .btn-icon {
                width: 100%;
                margin-top: 0.5rem;
            }
            
            .footer-content {
                grid-template-columns: 1fr;
            }
        }
        
        /* Hide desktop-only icons on mobile */
        @media (max-width: 768px) {

            .desktop-only {
                display: none;
            }

            .mobile-nav {
                display: none;
                background: #fff;
                padding: 15px;
            }

            .mobile-nav.active {
                display: block;
            }

            .nav-links {
                flex-direction: column;
                gap: 15px;
            }
        }

        @media (max-width: 480) {

            .desktop-only {
                display: none;
            }

            .mobile-nav {
                display: none;
                background: #fff;
                padding: 15px;
            }

            .mobile-nav.active {
                display: block;
            }

            .nav-links {
                flex-direction: column;
                gap: 15px;
            }
        }

        .menu-open .nav-links {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
        
        .menu-open .search-container {
            display: block !important;
        }

        .search-container {
            flex: 1;
            max-width: 500px;
            display: flex;
        }