
        /* CSS Variables */
        :root {
            --ivory: #f1ebf0;
            --accent: #211832;
            --taupe: #A8907C;
            --charcoal: #211832;
            --grey: #211832;
            --button-hover: #eae5ee;
            --footer-bg: #EAE6E1;
        }

        /* 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(--accent);
            color: white;
            border-radius: 30px;
            font-weight: 500;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            font-family: 'Montserrat', sans-serif;
        }

        .btn:hover {
            background-color: var(--charcoal);
            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);
        }

        .logo {
            font-family: 'Playfair Display', serif;
            font-size: 1.8rem;
            font-weight: 600;
            color: var(--accent);
        }

        .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;
        }

        .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 {
            min-height: 60vh;
            margin-top: 100px;
            padding: 40px 0;
        }

        @media (max-width: 768px) {
            .hero {
                min-height: 50vh;
                margin-top: 80px;
                text-align: center;
            }

            .hero-content {
                max-width: 100%;
            }

            .hero h1 {
                font-size: 2rem;
            }

            .hero p {
                font-size: 1rem;
            }
        }


        .hero-content {
            max-width: 600px;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 1s forwards 0.5s;
        }

        .hero h1 {
            font-size: 2.9rem;
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .hero p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            color: var(--grey);
        }

        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Main Collections Section */
 .main-collections {
            background-color: var(--white);
            padding: 100px 0;
        }

        .collections-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 30px;
        }

        .collection-card {
            text-align: center;
            overflow: hidden;
            border-radius: 5px;
            transition: transform 0.3s ease;
        }

        .collection-card:hover {
            transform: translateY(-10px);
        }

        .collection-img {
            height: auto;
            aspect-ratio: 3 / 4;
            background-color: var(--warm-beige);
            border-radius: 5px;
            margin-bottom: 20px;
            overflow: hidden;
            position: relative;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }

        .collection-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .collection-card:hover .collection-img img {
            transform: scale(1.05);
        }

        .collection-card h3 {
            font-size: 1.5rem;
            margin-bottom: 5px;
        }

        .collection-card span {
            font-family: 'Inter', sans-serif;
            font-size: 0.9rem;
            color: var(--soft-grey);
        }
        /* Products Section */
        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }

        .product-card {
            background-color: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            opacity: 0;
            transform: translateY(20px);
        }

        .product-card.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .product-img {
            width: 100%;
            height: 250px;
            object-fit: cover;
        }

        .product-info {
            padding: 20px;
        }

        .product-name {
            font-size: 1.2rem;
            margin-bottom: 10px;
            transition: color 0.3s ease;
            position: relative;
            display: inline-block;
        }

        .product-name::after {
            content: '';
            position: absolute;
            width: 0;
            height: 1px;
            bottom: -2px;
            left: 0;
            background-color: var(--accent);
            transition: width 0.3s ease;
        }

        .product-card:hover .product-name::after {
            width: 100%;
        }

        .product-price {
            color: var(--accent);
            font-weight: 600;
            margin-bottom: 15px;
        }

        .product-actions {
            display: flex;
            justify-content: space-between;
        }

        .action-btn {
            background: none;
            border: none;
            font-size: 1.1rem;
            color: var(--grey);
            cursor: pointer;
            transition: color 0.3s ease;
        }

        .action-btn:hover {
            color: var(--accent);
        }

        /* About Section */
        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
        }

        .about-img {
            width: 100%;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .about-text h2 {
            margin-bottom: 20px;
        }

        .about-text p {
            margin-bottom: 20px;
            color: var(--grey);
        }

        /* Contact Section */
        .contact-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
        }

        .contact-form {
            background-color: white;
            padding: 40px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-input {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-family: 'Montserrat', sans-serif;
            outline: none;
            transition: all 0.3s ease;
        }

        .form-input:focus {
            border-color: var(--accent);
            box-shadow: 0 0 0 2px rgba(159, 123, 72, 0.2);
        }

        textarea.form-input {
            min-height: 150px;
            resize: vertical;
        }

        /* ENHANCED: Testimonials Section */
        .testimonials {
            background-color: var(--soft-ivory);
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .testimonial-card {
            background-color: var(--white);
            border-radius: 5px;
            padding: 30px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            border: 1px solid rgba(159, 123, 72, 0.2);
        }

        .testimonial-text {
            font-style: italic;
            margin-bottom: 20px;
            color: var(--soft-grey);
        }

        .testimonial-author {
            display: flex;
            align-items: center;
        }

        .author-img {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background-color: var(--warm-beige);
            margin-right: 15px;
        }

        .author-info h4 {
            font-size: 1.1rem;
            margin-bottom: 5px;
        }

        .author-info p {
            font-size: 0.9rem;
            margin-bottom: 0;
        }

        /* ENHANCED: Newsletter Section */
        .newsletter {
            background-color: var(--warm-beige);
            padding: 80px 0;
            text-align: center;
        }

        .newsletter-content {
            max-width: 600px;
            margin: 0 auto;
        }

        .newsletter h2 {
            margin-bottom: 15px;
        }

        .newsletter p {
            margin-bottom: 30px;
            font-size: 1.1rem;
        }

        .newsletter-form {
            display: flex;
            max-width: 500px;
            margin: 0 auto;
        }

        .newsletter-form input {
            flex: 1;
            padding: 15px 20px;
            border: none;
            border-radius: 2px 0 0 2px;
            font-family: 'Inter', sans-serif;
        }

        .newsletter-form input:focus {
            outline: none;
        }

        .newsletter-form button {
            border-radius: 0 2px 2px 0;
        }

        /* ENHANCED: Footer Section */
        footer {
            background-color: var(--warm-beige);
            padding: 70px 0 30px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 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 {
                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;
            }
        }

        img {
            max-width: 100%;
            height: auto;
        }

        @media (max-width: 1024px) {
            .about-content,
            .contact-container {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .about-img {
                max-width: 80%;
                margin: 0 auto;
            }

            .search-container {
                width: 100%;
                margin: 10px auto;
            }
        }

        .menu-open .nav-links {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .menu-open .search-container {
            display: block !important;
        }

        .cart-bounce {
            animation: bounce 0.4s ease;
        }

        @keyframes bounce {
            0% { transform: scale(1); }
            50% { transform: scale(1.3); }
            100% { transform: scale(1); }
        }
        
        /* Hide desktop-only icons on mobile */
        @media (max-width: 768px) {

            .desktop-only {
                display: none;
            }

            .search-container {
                max-width: 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;
            }

            .search-container {
                max-width: none;
            }

            .mobile-nav {
                display: none;
                background: #fff;
                padding: 15px;
            }

            .mobile-nav.active {
                display: block;
            }

            .nav-links {
                flex-direction: column;
                gap: 15px;
            }
        }

        .header-top {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 15px;
        }

        .search-container {
            flex: 1;
            max-width: 500px;
            display: flex;
        }

        .search-input {
            width: 100%;
        }

        .header-icons {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .cart-icon {
            position: relative;
        }

        #cart-count {
            position: absolute;
            top: -6px;
            right: -8px;
            background: red;
            color: #fff;
            font-size: 12px;
            padding: 2px 6px;
            border-radius: 50%;
        }


