@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;700&family=Playfair+Display:wght@400;700&display=swap');

        :root {
            --primary-color: #5d4037;
            --secondary-color: #fbe9e7;
            --accent-color: #8d6e63;
            --text-color: #3e2723;
            --bg-color: #fff8e1;
            --shadow-color: rgba(0, 0, 0, 0.1);
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
            scroll-behavior: smooth;
        }

        html {
            font-size: 16px;
        }

        body {
            font-family: 'Roboto', sans-serif;
            line-height: 1.6;
            color: var(--text-color);
            background-color: var(--bg-color);
        }

        header {
            background-color: var(--primary-color);
            color: var(--secondary-color);
            padding: 1rem 2rem;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px var(--shadow-color);
        }

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
        }

        .logo {
            font-family: 'Playfair Display', serif;
            font-size: 2rem;
            font-weight: 700;
            color: var(--secondary-color);
            text-decoration: none;
        }

        .nav-menu {
            display: flex;
            list-style: none;
        }

        .nav-menu li {
            margin-left: 2rem;
        }

        .nav-menu a {
            color: var(--secondary-color);
            text-decoration: none;
            font-weight: 400;
            transition: color 0.3s ease;
        }

        .nav-menu a:hover {
            color: var(--accent-color);
        }

        .burger-menu {
            display: none;
            flex-direction: column;
            cursor: pointer;
        }

        .burger-menu div {
            width: 25px;
            height: 3px;
            background-color: var(--secondary-color);
            margin: 4px;
            transition: all 0.3s ease;
        }

        main {
            padding-top: 80px;
        }

        section {
            padding: 4rem 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .hero {
            position: relative;
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: #fff;
            background-image: url('../img/09.webp');
            background-size: cover;
            background-position: center;
            animation: hero-fade-in 1.5s ease-out;
        }

        .hero::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.6);
        }

        .hero-content {
            position: relative;
            z-index: 1;
        }

        .hero h1 {
            font-family: 'Playfair Display', serif;
            font-size: 4rem;
            margin-bottom: 1rem;
            animation: slide-up 1s ease-out;
        }

        .hero p {
            font-size: 1.5rem;
            margin-bottom: 2rem;
            animation: slide-up 1.2s ease-out;
        }

        .btn {
            display: inline-block;
            background-color: var(--accent-color);
            color: #fff;
            padding: 0.75rem 2rem;
            text-decoration: none;
            border-radius: 5px;
            font-weight: 700;
            transition: background-color 0.3s ease, transform 0.3s ease;
        }

        .btn:hover {
            background-color: #795548;
            transform: scale(1.05);
        }

        .about {
            background-color: var(--secondary-color);
            text-align: center;
        }

        .about h2,
        .products h2,
        .prices h2,
        .gallery h2,
        .feedback h2,
        .faq h2 {
            font-family: 'Playfair Display', serif;
            font-size: 2.5rem;
            margin-bottom: 2rem;
            color: var(--primary-color);
        }

        .about-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
            align-items: center;
        }

        .about-text {
            text-align: left;
        }

        .about-text p {
            margin-bottom: 1rem;
        }
        
        .products .product-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .products .product-card {
            background-color: #fff;
            padding: 2rem;
            border-radius: 10px;
            box-shadow: 0 4px 15px var(--shadow-color);
            text-align: center;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            overflow: hidden;
        }

        .products .product-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
        }

        .products .product-card h3 {
            font-family: 'Playfair Display', serif;
            color: var(--primary-color);
            margin-bottom: 1rem;
        }

        .products .product-card p {
            font-size: 1rem;
        }

        .prices .price-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .prices .price-card {
            background-color: #fff;
            padding: 2rem;
            border-radius: 10px;
            box-shadow: 0 4px 15px var(--shadow-color);
            text-align: center;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .prices .price-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
        }

        .prices .price-card h3 {
            font-family: 'Playfair Display', serif;
            color: var(--primary-color);
            margin-bottom: 1rem;
        }

        .prices .price-card .price-value {
            font-size: 3rem;
            font-weight: 700;
            color: var(--accent-color);
            margin-bottom: 1rem;
        }

        .prices .price-card .price-value span {
            font-size: 1.5rem;
            font-weight: 400;
        }

        .prices .price-card ul {
            list-style: none;
            text-align: left;
            margin-bottom: 2rem;
            padding-left: 1rem;
        }

        .prices .price-card ul li {
            position: relative;
            margin-bottom: 0.5rem;
        }

        .prices .price-card ul li::before {
            content: '✔';
            position: absolute;
            left: -1rem;
            color: green;
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1rem;
        }

        .gallery-grid img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            border-radius: 8px;
            box-shadow: 0 4px 10px var(--shadow-color);
            transition: transform 0.3s ease;
        }

        .gallery-grid img:hover {
            transform: scale(1.05);
        }

        .feedback-slider {
            position: relative;
            overflow: hidden;
        }

        .feedback-container {
            display: flex;
            transition: transform 0.5s ease-in-out;
        }

        .feedback-card {
            min-width: 100%;
            padding: 2rem;
            background-color: #fff;
            border-radius: 10px;
            box-shadow: 0 4px 15px var(--shadow-color);
            text-align: center;
        }

        .feedback-card p {
            font-style: italic;
            margin-bottom: 1rem;
        }

        .feedback-card span {
            font-weight: 700;
            color: var(--primary-color);
        }

        .slider-controls {
            display: flex;
            justify-content: center;
            margin-top: 1rem;
        }

        .slider-dot {
            width: 10px;
            height: 10px;
            background-color: #ccc;
            border-radius: 50%;
            margin: 0 5px;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }

        .slider-dot.active {
            background-color: var(--accent-color);
        }

        .faq .faq-item {
            border-bottom: 1px solid #ccc;
            padding: 1.5rem 0;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }
        
        .faq .faq-item:hover {
            background-color: #f5f5f5;
        }
        
        .faq .faq-question {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .faq .faq-question h3 {
            margin: 0;
            font-size: 1.2rem;
            color: var(--primary-color);
        }

        .faq .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease-in-out;
            padding-top: 0.5rem;
        }

        .faq .faq-item.active .faq-answer {
            max-height: 200px;
        }

        .faq .faq-item.active .arrow {
            transform: rotate(180deg);
        }

        .arrow {
            font-size: 1.5rem;
            transition: transform 0.3s ease;
        }

        .contact-form {
            max-width: 600px;
            margin: 2rem auto;
            background-color: #fff;
            padding: 2rem;
            border-radius: 10px;
            box-shadow: 0 4px 15px var(--shadow-color);
            text-align: center;
        }
        
        .contact-form label {
            display: block;
            margin-bottom: 0.5rem;
            text-align: left;
            font-weight: 700;
            color: var(--primary-color);
        }
        
        .contact-form input[type="text"],
        .contact-form input[type="email"],
        .contact-form input[type="tel"] {
            width: 100%;
            padding: 0.75rem;
            margin-bottom: 1.5rem;
            border: 1px solid #ccc;
            border-radius: 5px;
        }
        
        .contact-form .btn {
            width: 100%;
            border: none;
            cursor: pointer;
        }

        .disclaimer {
            background-color: #f8f8f8;
            padding: 1rem;
            text-align: center;
            font-size: 0.8rem;
            color: #666;
            border-top: 1px solid #ddd;
        }

        footer {
            background-color: var(--primary-color);
            color: var(--secondary-color);
            padding: 2rem;
            text-align: center;
        }
        
        footer .footer-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .footer-links {
            list-style: none;
            display: flex;
            justify-content: center;
            margin-bottom: 1rem;
        }

        .footer-links li {
            margin: 0 1rem;
        }

        .footer-links a {
            color: var(--secondary-color);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: var(--accent-color);
        }

        .footer-contact p {
            margin-bottom: 0.5rem;
        }
        
        .cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background-color: #fff;
            box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
            padding: 1rem;
            text-align: center;
            z-index: 2000;
            display: none;
            flex-direction: column;
            align-items: center;
            gap: 1rem;
        }

        .cookie-banner p {
            margin: 0;
        }

        .cookie-banner .btn {
            padding: 0.5rem 1.5rem;
        }
        
        .popup {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.7);
            display: none;
            justify-content: center;
            align-items: center;
            z-index: 3000;
        }

        .popup-content {
            background-color: #fff;
            padding: 2rem;
            border-radius: 10px;
            text-align: center;
            position: relative;
            max-width: 400px;
        }

        .popup-content h3 {
            color: var(--primary-color);
            margin-bottom: 1rem;
        }
        
        .popup-close {
            position: absolute;
            top: 10px;
            right: 10px;
            font-size: 1.5rem;
            cursor: pointer;
            color: #333;
        }
        
        @keyframes hero-fade-in {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        @keyframes slide-up {
            from { transform: translateY(50px); opacity: 0; }
            to { transform: translateY(0); opacity: 1; }
        }
        
        @media (max-width: 768px) {
            .header-container {
                flex-wrap: wrap;
            }
            .nav-menu {
                flex-direction: column;
                width: 100%;
                text-align: center;
                background-color: var(--primary-color);
                position: absolute;
                top: 80px;
                left: -100%;
                transition: left 0.5s ease;
            }
            .nav-menu.active {
                left: 0;
            }
            .nav-menu li {
                margin: 1rem 0;
            }
            .burger-menu {
                display: flex;
            }
            .burger-menu.active .line1 {
                transform: rotate(-45deg) translate(-5px, 6px);
            }
            .burger-menu.active .line2 {
                opacity: 0;
            }
            .burger-menu.active .line3 {
                transform: rotate(45deg) translate(-5px, -6px);
            }
            .hero h1 {
                font-size: 2.5rem;
            }
            .hero p {
                font-size: 1.2rem;
            }
            .about-grid {
                grid-template-columns: 1fr;
            }
        }

