/* Reset and base styles */
        * { margin: 0; padding: 0; box-sizing: border-box; }
        body { font-family: 'Times New Roman', serif; line-height: 1.6; color: #3C2F2D; background-color: #F8F4E9; }
        
        /* Victorian/Art Deco color scheme */
        :root {
            --dark-burgundy: #6D2C3D;
            --gold: #C8A971;
            --cream: #F8F4E9;
            --dark-green: #2C4C3B;
            --light-gold: #E8D9B4;
        }
        
        /* Typography */
        h1, h2, h3, h4 { font-family: Georgia, serif; color: var(--dark-burgundy); }
        h1 { font-size: 2.8rem; margin-bottom: 1.5rem; letter-spacing: 1px; }
        h2 { font-size: 2.2rem; margin-bottom: 1.2rem; border-bottom: 2px solid var(--gold); padding-bottom: 0.5rem; }
        h3 { font-size: 1.8rem; margin-bottom: 1rem; color: var(--dark-green); }
        
        /* Header styles */
        header {
            position: fixed;
            top: 0;
            width: 100%;
            background-color: var(--dark-burgundy);
            color: var(--cream);
            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.2);
        }
        
        .logo { font-size: 1.8rem; font-weight: bold; color: var(--gold); }
        
        .nav-links { display: flex; list-style: none; }
        .nav-links li { margin-left: 2rem; }
        .nav-links a { color: var(--cream); text-decoration: none; transition: color 0.3s; }
        .nav-links a:hover { color: var(--gold); }
        
        .burger { display: none; cursor: pointer; }
        .burger div { width: 25px; height: 3px; background-color: var(--cream); margin: 5px; transition: all 0.3s ease; }
        
        /* Main content spacing */
        main { margin-top: 80px; }
        section { padding: 4rem 2rem; max-width: 1200px; margin: 0 auto; }
        
        /* Hero section */
        .hero {
            background: linear-gradient(rgba(108, 44, 61, 0.8), rgba(108, 44, 61, 0.8)), url('https://images.unsplash.com/photo-1753955900083-b62ee8d97805?q=80&w=1170&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D') no-repeat center center/cover;
            color: var(--cream);
            text-align: center;
            padding: 8rem 2rem;
        }
        
        .hero h1 { color: var(--gold); font-size: 3.5rem; margin-bottom: 1.5rem; }
        .hero p { font-size: 1.5rem; margin-bottom: 2rem; max-width: 800px; margin-left: auto; margin-right: auto; }
        .btn { display: inline-block; background: var(--gold); color: var(--dark-burgundy); padding: 0.8rem 2rem; text-decoration: none; border-radius: 5px; font-weight: bold; transition: all 0.3s; border: none; cursor: pointer; }
        .btn:hover { background: var(--light-gold); transform: translateY(-3px); }
        
        /* About section */
        .about { background-color: var(--cream); }
        .about-content { display: flex; align-items: center; gap: 3rem; margin-top: 2rem; }
        .about-text { flex: 1; }
        .about-image { flex: 1; border: 5px solid var(--gold); padding: 5px; background: white; }
        .about-image img { width: 100%; display: block; }
        
        /* Products section */
        .products { background-color: white; }
        .product-cards { display: flex; gap: 2rem; margin-top: 2rem; flex-wrap: wrap; }
        .product-card { flex: 1; min-width: 300px; background: var(--cream); padding: 2rem; border-top: 5px solid var(--dark-burgundy); box-shadow: 0 5px 15px rgba(0,0,0,0.1); }
        .product-card h3 { color: var(--dark-burgundy); }
        
        /* Prices section */
        .prices { background-color: var(--light-gold); }
        .price-cards { display: flex; gap: 2rem; margin-top: 2rem; flex-wrap: wrap; }
        .price-card { flex: 1; min-width: 250px; background: white; padding: 2rem; text-align: center; box-shadow: 0 5px 15px rgba(0,0,0,0.1); }
        .price-card h3 { color: var(--dark-burgundy); }
        .price { font-size: 2.5rem; color: var(--dark-green); margin: 1rem 0; }
        
        /* Gallery section */
        .gallery { background-color: white; }
        .gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 1.5rem; margin-top: 2rem; }
        .gallery-item { height: 200px; overflow: hidden; position: relative; }
        .gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
        .gallery-item:hover img { transform: scale(1.1); }
        
        /* Feedback section */
        .feedback { background-color: var(--cream); }
        .testimonials { margin-top: 2rem; position: relative; overflow: hidden; height: 300px; }
        .testimonial { position: absolute; top: 0; left: 0; width: 100%; opacity: 0; transition: opacity 0.5s; background: white; padding: 2rem; box-shadow: 0 5px 15px rgba(0,0,0,0.1); }
        .testimonial.active { opacity: 1; }
        .testimonial-text { font-style: italic; margin-bottom: 1rem; }
        .testimonial-author { font-weight: bold; color: var(--dark-burgundy); }
        .testimonial-controls { text-align: center; margin-top: 2rem; }
        .testimonial-controls button { background: var(--dark-burgundy); color: white; border: none; padding: 0.5rem 1rem; margin: 0 0.5rem; cursor: pointer; }
        
        /* FAQ section */
        .faq { background-color: white; }
        .faq-item { margin-bottom: 1.5rem; border-bottom: 1px solid var(--light-gold); }
        .faq-question { font-weight: bold; cursor: pointer; padding: 1rem 0; position: relative; }
        .faq-answer { padding: 0 0 1rem; display: none; }
        .faq-question::after { content: '+'; position: absolute; right: 0; }
        .faq-question.active::after { content: '-'; }
        
        /* Contact section */
        .contact { background-color: var(--light-gold); }
        .contact-form { max-width: 600px; margin: 2rem auto 0; }
        .form-group { margin-bottom: 1.5rem; }
        .form-group label { display: block; margin-bottom: 0.5rem; font-weight: bold; }
        .form-group input, .form-group textarea { width: 100%; padding: 0.8rem; border: 1px solid #ddd; border-radius: 4px; }
        .form-group textarea { height: 150px; }
        
        /* Popup */
        .popup { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.7); display: flex; justify-content: center; align-items: center; z-index: 2000; visibility: hidden; opacity: 0; transition: all 0.3s; }
        .popup-content { background: white; padding: 2rem; border-radius: 5px; text-align: center; max-width: 500px; width: 90%; position: relative; }
        .popup-close { position: absolute; top: 10px; right: 10px; cursor: pointer; font-size: 1.5rem; }
        .popup.active { visibility: visible; opacity: 1; }
        
        /* Disclaimer */
        .disclaimer { background-color: var(--dark-green); color: white; padding: 2rem; text-align: center; font-size: 0.9rem; }
        
        /* Cookie banner */
        .cookie-banner { position: fixed; bottom: 0; left: 0; width: 100%; background: var(--dark-burgundy); color: white; padding: 1rem; text-align: center; z-index: 1000; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; }
        .cookie-banner p { margin-bottom: 1rem; flex: 1; }
        .cookie-banner button { background: var(--gold); color: var(--dark-burgundy); border: none; padding: 0.5rem 1.5rem; cursor: pointer; }
        
        /* Footer */
        footer { background-color: var(--dark-burgundy); color: var(--cream); padding: 3rem 2rem; }
        .footer-content { max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; flex-wrap: wrap; }
        .footer-section { flex: 1; min-width: 250px; margin-bottom: 2rem; }
        .footer-section h3 { color: var(--gold); border-bottom: 1px solid var(--gold); padding-bottom: 0.5rem; margin-bottom: 1rem; }
        .footer-links { list-style: none; }
        .footer-links li { margin-bottom: 0.5rem; }
        .footer-links a { color: var(--cream); text-decoration: none; }
        .footer-links a:hover { color: var(--gold); }
        .footer-bottom { text-align: center; padding-top: 2rem; border-top: 1px solid rgba(200, 169, 113, 0.3); margin-top: 2rem; }
        
        /* Responsive design */
        @media screen and (max-width: 768px) {
            .nav-links { 
                position: absolute; 
                right: 0; 
                top: 70px; 
                background-color: var(--dark-burgundy); 
                width: 100%; 
                flex-direction: column; 
                align-items: center; 
                padding: 2rem 0; 
                clip-path: circle(0px at top right);
                transition: all 0.5s ease-out;
            }
            .nav-links.active { clip-path: circle(1000px at top right); }
            .nav-links li { margin: 1rem 0; }
            .burger { display: block; }
            
            .about-content { flex-direction: column; }
            .hero { padding: 6rem 1rem; }
            .hero h1 { font-size: 2.5rem; }
            
            .footer-section { flex: 100%; }
        }

