* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Georgia', serif;
            line-height: 1.6;
            color: #333;
            background-color: #f5f2e9;
            overflow-x: hidden;
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: #4b2e20;
            color: #f5f2e9;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
            border-bottom: 2px solid #d4af37;
        }
        
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        
        .logo {
            font-size: 24px;
            font-weight: bold;
            color: #d4af37;
            text-transform: uppercase;
            letter-spacing: 2px;
            font-family: 'Georgia', serif;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
        }
        
        .nav-list {
            display: flex;
            list-style: none;
        }
        
        .nav-list li {
            margin-left: 20px;
        }
        
        .nav-list a {
            color: #f5f2e9;
            text-decoration: none;
            font-size: 16px;
            transition: color 0.3s;
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .nav-list a:hover {
            color: #d4af37;
        }
        
        .burger {
            display: none;
            cursor: pointer;
        }
        
        .burger span {
            display: block;
            width: 25px;
            height: 3px;
            background-color: #f5f2e9;
            margin: 5px 0;
            transition: all 0.3s;
        }
        
        .hero {
            padding: 150px 0 80px;
            background: linear-gradient(rgba(75, 46, 32, 0.8), rgba(75, 46, 32, 0.8)), url('../img/04.webp') center/cover no-repeat;
            color: #f5f2e9;
            text-align: center;
            position: relative;
        }
        
        .hero::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="none" stroke="rgba(212, 175, 55, 0.1)" stroke-width="1"/></svg>');
            z-index: 1;
            opacity: 0.5;
        }
        
        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 800px;
            margin: 0 auto;
        }
        
        .hero h1 {
            font-size: 48px;
            margin-bottom: 20px;
            color: #f5f2e9;
            text-transform: uppercase;
            letter-spacing: 3px;
            font-family: 'Georgia', serif;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        }
        
        .hero p {
            font-size: 20px;
            margin-bottom: 30px;
            font-weight: bold;
            color: #f5f2e9;
        }
        
        .btn {
            display: inline-block;
            padding: 12px 30px;
            background-color: #d4af37;
            color: #4b2e20;
            text-decoration: none;
            border-radius: 0;
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s;
            border: none;
            cursor: pointer;
            font-family: 'Georgia', serif;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
            position: relative;
            overflow: hidden;
        }
        
        .btn::before {
            content: "";
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: rgba(255, 255, 255, 0.2);
            transition: left 0.3s;
        }
        
        .btn:hover::before {
            left: 100%;
        }
        
        .btn:hover {
            background-color: #b8941f;
            transform: translateY(-2px);
            box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
        }
        
        .about {
            padding: 80px 0;
            background-color: #f5f2e9;
            position: relative;
        }
        
        .about::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="none" stroke="rgba(75, 46, 32, 0.05)" stroke-width="1"/></svg>');
            z-index: 0;
        }
        
        .about-content {
            display: flex;
            align-items: center;
            gap: 50px;
            position: relative;
            z-index: 1;
        }
        
        .about-text {
            flex: 1;
            background-color: rgba(255, 255, 255, 0.7);
            padding: 30px;
            border: 1px solid #d4af37;
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
        }
        
        .about-text p {
            margin-bottom: 20px;
            font-size: 16px;
            color: #4b2e20;
        }
        
        .about-image {
            flex: 1;
            position: relative;
        }
        
        .about-image::before {
            content: "";
            position: absolute;
            top: -10px;
            left: -10px;
            right: -10px;
            bottom: -10px;
            border: 2px solid #d4af37;
            z-index: -1;
        }
        
        .about-image img {
            width: 100%;
            border: 10px solid #fff;
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
        }
        
        .products {
            padding: 80px 0;
            background-color: #4b2e20;
            position: relative;
        }
        
        .products::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="none" stroke="rgba(212, 175, 55, 0.1)" stroke-width="1"/></svg>');
            z-index: 0;
            opacity: 0.3;
        }
        
        .products h2 {
            color: #f5f2e9;
            text-align: center;
            font-size: 32px;
            margin-bottom: 40px;
            font-family: 'Georgia', serif;
            text-transform: uppercase;
            letter-spacing: 2px;
            position: relative;
            z-index: 1;
        }
        
        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            position: relative;
            z-index: 1;
        }
        
        .product-card {
            background-color: #f5f2e9;
            border: 1px solid #d4af37;
            overflow: hidden;
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
            transition: transform 0.3s;
            position: relative;
        }
        
        .product-card::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, #d4af37, #f5f2e9);
        }
        
        .product-card:hover {
            transform: translateY(-5px);
        }
        
        .product-card img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            border-bottom: 2px solid #d4af37;
        }
        
        .product-card h3 {
            padding: 20px;
            color: #4b2e20;
            font-size: 20px;
            font-weight: bold;
            text-transform: uppercase;
            font-family: 'Georgia', serif;
        }
        
        .product-card p {
            padding: 0 20px 20px;
            color: #4b2e20;
        }
        
        .prices {
            padding: 80px 0;
            background-color: #f5f2e9;
            position: relative;
        }
        
        .prices::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="none" stroke="rgba(75, 46, 32, 0.05)" stroke-width="1"/></svg>');
            z-index: 0;
        }
        
        .prices h2 {
            color: #4b2e20;
            text-align: center;
            font-size: 32px;
            margin-bottom: 40px;
            font-family: 'Georgia', serif;
            text-transform: uppercase;
            letter-spacing: 2px;
            position: relative;
            z-index: 1;
        }
        
        .prices-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            position: relative;
            z-index: 1;
        }
        
        .price-card {
            background-color: #fff;
            border: 1px solid #d4af37;
            padding: 30px;
            text-align: center;
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s;
            position: relative;
        }
        
        .price-card::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, #d4af37, #f5f2e9);
        }
        
        .price-card:hover {
            transform: translateY(-5px);
        }
        
        .price-card.featured {
            background-color: #4b2e20;
            color: #f5f2e9;
            transform: scale(1.05);
        }
        
        .price-card.featured::before {
            background: linear-gradient(90deg, #d4af37, #f5f2e9);
        }
        
        .price-card.featured:hover {
            transform: scale(1.05) translateY(-5px);
        }
        
        .price-card h3 {
            margin-bottom: 20px;
            color: #4b2e20;
            font-size: 22px;
            font-weight: bold;
            text-transform: uppercase;
            font-family: 'Georgia', serif;
        }
        
        .price-card.featured h3 {
            color: #d4af37;
        }
        
        .price {
            font-size: 36px;
            font-weight: bold;
            color: #d4af37;
            margin-bottom: 20px;
            font-family: 'Georgia', serif;
        }
        
        .price-card.featured .price {
            color: #f5f2e9;
        }
        
        .price-card ul {
            list-style: none;
            margin-bottom: 30px;
            text-align: left;
        }
        
        .price-card li {
            padding: 10px 0;
            border-bottom: 1px solid rgba(75, 46, 32, 0.1);
        }
        
        .price-card.featured li {
            border-bottom: 1px solid rgba(245, 242, 233, 0.2);
        }
        
        .gallery {
            padding: 80px 0;
            background-color: #4b2e20;
            position: relative;
        }
        
        .gallery::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="none" stroke="rgba(212, 175, 55, 0.1)" stroke-width="1"/></svg>');
            z-index: 0;
            opacity: 0.3;
        }
        
        .gallery h2 {
            color: #f5f2e9;
            text-align: center;
            font-size: 32px;
            margin-bottom: 40px;
            font-family: 'Georgia', serif;
            text-transform: uppercase;
            letter-spacing: 2px;
            position: relative;
            z-index: 1;
        }
        
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            position: relative;
            z-index: 1;
        }
        
        .gallery-grid img {
            width: 100%;
            height: 250px;
            object-fit: cover;
            border: 3px solid #d4af37;
            transition: all 0.3s;
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
        }
        
        .gallery-grid img:hover {
            transform: scale(1.05);
            border-color: #f5f2e9;
        }
        
        .feedback {
            padding: 80px 0;
            background-color: #f5f2e9;
            position: relative;
        }
        
        .feedback::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="none" stroke="rgba(75, 46, 32, 0.05)" stroke-width="1"/></svg>');
            z-index: 0;
        }
        
        .feedback h2 {
            color: #4b2e20;
            text-align: center;
            font-size: 32px;
            margin-bottom: 40px;
            font-family: 'Georgia', serif;
            text-transform: uppercase;
            letter-spacing: 2px;
            position: relative;
            z-index: 1;
        }
        
        .feedback-slider {
            position: relative;
            overflow: hidden;
            margin-top: 40px;
            position: relative;
            z-index: 1;
        }
        
        .feedback-item {
            display: none;
            background-color: #fff;
            border: 1px solid #d4af37;
            padding: 30px;
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
            position: relative;
        }
        
        .feedback-item::before {
            content: "";
            position: absolute;
            top: 10px;
            left: 10px;
            font-size: 80px;
            color: rgba(212, 175, 55, 0.2);
            font-family: 'Georgia', serif;
        }
        
        .feedback-item.active {
            display: block;
        }
        
        .feedback-text {
            font-style: italic;
            margin-bottom: 20px;
            color: #4b2e20;
            padding-left: 20px;
        }
        
        .feedback-author {
            display: flex;
            align-items: center;
        }
        
        .feedback-author img {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            margin-right: 15px;
            border: 2px solid #d4af37;
        }
        
        .feedback-author h4 {
            color: #4b2e20;
            margin-bottom: 5px;
            font-weight: bold;
        }
        
        .slider-controls {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 30px;
        }
        
        .slider-controls button {
            background-color: #4b2e20;
            color: #f5f2e9;
            border: none;
            padding: 10px 20px;
            border-radius: 0;
            cursor: pointer;
            transition: all 0.3s;
            font-weight: bold;
            text-transform: uppercase;
            font-family: 'Georgia', serif;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        }
        
        .slider-controls button:hover {
            background-color: #d4af37;
            color: #4b2e20;
        }
        
        .faq {
            padding: 80px 0;
            background-color: #4b2e20;
            position: relative;
        }
        
        .faq::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="none" stroke="rgba(212, 175, 55, 0.1)" stroke-width="1"/></svg>');
            z-index: 0;
            opacity: 0.3;
        }
        
        .faq h2 {
            color: #f5f2e9;
            text-align: center;
            font-size: 32px;
            margin-bottom: 40px;
            font-family: 'Georgia', serif;
            text-transform: uppercase;
            letter-spacing: 2px;
            position: relative;
            z-index: 1;
        }
        
        .faq-list {
            margin-top: 40px;
            position: relative;
            z-index: 1;
        }
        
        .faq-item {
            background-color: #f5f2e9;
            border: 1px solid #d4af37;
            padding: 20px;
            margin-bottom: 20px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            position: relative;
        }
        
        .faq-item::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 5px;
            height: 100%;
            background-color: #d4af37;
        }
        
        .faq-item h3 {
            color: #4b2e20;
            margin-bottom: 15px;
            cursor: pointer;
            position: relative;
            font-weight: bold;
            text-transform: uppercase;
            font-family: 'Georgia', serif;
            padding-right: 30px;
        }
        
        .faq-item h3::after {
            content: '+';
            position: absolute;
            right: 0;
            font-size: 24px;
            color: #d4af37;
        }
        
        .faq-item.active h3::after {
            content: '-';
        }
        
        .faq-item p {
            color: #4b2e20;
            display: none;
        }
        
        .faq-item.active p {
            display: block;
        }
        
        .contact {
            padding: 80px 0;
            background-color: #f5f2e9;
            position: relative;
        }
        
        .contact::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="none" stroke="rgba(75, 46, 32, 0.05)" stroke-width="1"/></svg>');
            z-index: 0;
        }
        
        .contact h2 {
            color: #4b2e20;
            text-align: center;
            font-size: 32px;
            margin-bottom: 40px;
            font-family: 'Georgia', serif;
            text-transform: uppercase;
            letter-spacing: 2px;
            position: relative;
            z-index: 1;
        }
        
        .contact-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            margin-top: 40px;
            position: relative;
            z-index: 1;
        }
        
        .contact-form {
            background-color: #fff;
            padding: 30px;
            border: 1px solid #d4af37;
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 5px;
            color: #4b2e20;
            font-weight: bold;
            text-transform: uppercase;
        }
        
        .form-group input {
            width: 100%;
            padding: 12px;
            background-color: #f5f2e9;
            border: 1px solid #d4af37;
            border-radius: 0;
            font-size: 16px;
            color: #4b2e20;
            font-family: 'Georgia', serif;
        }
        
        .contact-info {
            background-color: #4b2e20;
            padding: 30px;
            color: #f5f2e9;
            border: 1px solid #d4af37;
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
        }
        
        .contact-info h3 {
            color: #d4af37;
            margin-bottom: 20px;
            font-weight: bold;
            text-transform: uppercase;
            font-family: 'Georgia', serif;
        }
        
        .contact-info p {
            margin-bottom: 10px;
            color: #f5f2e9;
        }
        
        .disclaimer {
            background-color: #4b2e20;
            color: #f5f2e9;
            padding: 20px 0;
            text-align: center;
            font-size: 14px;
            border-top: 2px solid #d4af37;
        }
        
        .footer {
            background-color: #4b2e20;
            color: #f5f2e9;
            padding: 50px 0 20px;
            border-top: 2px solid #d4af37;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            gap: 30px;
            margin-bottom: 30px;
        }
        
        .footer-logo {
            font-size: 24px;
            font-weight: bold;
            color: #d4af37;
            text-transform: uppercase;
            letter-spacing: 2px;
            font-family: 'Georgia', serif;
        }
        
        .footer-links ul {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 10px;
        }
        
        .footer-links a {
            color: #f5f2e9;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-links a:hover {
            color: #d4af37;
        }
        
        .footer-contact p {
            margin-bottom: 10px;
            color: #f5f2e9;
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(245, 242, 233, 0.2);
            color: #f5f2e9;
        }
        
        .cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background-color: #4b2e20;
            color: #f5f2e9;
            padding: 20px;
            box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
            z-index: 1000;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transform: translateY(100%);
            transition: transform 0.3s;
            border-top: 2px solid #d4af37;
        }
        
        .cookie-banner.show {
            transform: translateY(0);
        }
        
        .cookie-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .cookie-content p {
            flex: 1;
            margin-right: 20px;
        }
        
        .cookie-content a {
            color: #d4af37;
            text-decoration: none;
            font-weight: bold;
        }
        
        #acceptCookies {
            background-color: #d4af37;
            color: #4b2e20;
            border: none;
            padding: 10px 20px;
            border-radius: 0;
            cursor: pointer;
            transition: all 0.3s;
            font-weight: bold;
            text-transform: uppercase;
            font-family: 'Georgia', serif;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        }
        
        #acceptCookies:hover {
            background-color: #f5f2e9;
            color: #4b2e20;
        }
        
        .popup {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.7);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 2000;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s;
        }
        
        .popup.show {
            opacity: 1;
            visibility: visible;
        }
        
        .popup-content {
            background-color: #f5f2e9;
            padding: 30px;
            border: 2px solid #d4af37;
            text-align: center;
            max-width: 400px;
            width: 90%;
            transform: scale(0.7);
            transition: transform 0.3s;
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
        }
        
        .popup.show .popup-content {
            transform: scale(1);
        }
        
        .popup-content h3 {
            color: #4b2e20;
            margin-bottom: 15px;
            font-weight: bold;
            text-transform: uppercase;
            font-family: 'Georgia', serif;
        }
        
        .popup-content p {
            margin-bottom: 20px;
            color: #4b2e20;
        }
        
        #closePopup {
            background-color: #d4af37;
            color: #4b2e20;
            border: none;
            padding: 10px 20px;
            border-radius: 0;
            cursor: pointer;
            transition: all 0.3s;
            font-weight: bold;
            text-transform: uppercase;
            font-family: 'Georgia', serif;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        }
        
        #closePopup:hover {
            background-color: #b8941f;
            color: #4b2e20;
        }
        
        @media (max-width: 992px) {
            .hero h1 {
                font-size: 36px;
            }
            
            .hero p {
                font-size: 18px;
            }
            
            .about-content {
                flex-direction: column;
            }
            
            .contact-content {
                grid-template-columns: 1fr;
            }
            
            .footer-content {
                grid-template-columns: 1fr;
                text-align: center;
            }
        }
        
        @media (max-width: 768px) {
            .nav-list {
                position: fixed;
                top: 70px;
                left: 0;
                width: 100%;
                background-color: #4b2e20;
                flex-direction: column;
                align-items: center;
                padding: 20px 0;
                transform: translateY(-150%);
                transition: transform 0.3s;
                z-index: 999;
                border-bottom: 2px solid #d4af37;
            }
            
            .nav-list.active {
                transform: translateY(0);
            }
            
            .nav-list li {
                margin: 10px 0;
            }
            
            .burger {
                display: block;
            }
            
            .hero {
                padding: 120px 0 60px;
            }
            
            .hero h1 {
                font-size: 30px;
            }
            
            .hero p {
                font-size: 16px;
            }
            
            .gallery-grid {
                grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            }
            
            .cookie-content {
                flex-direction: column;
                text-align: center;
            }
            
            .cookie-content p {
                margin-right: 0;
                margin-bottom: 15px;
            }
        }
        
        @media (max-width: 576px) {
            .hero h1 {
                font-size: 24px;
            }
            
            .hero p {
                font-size: 14px;
            }
            
            .btn {
                padding: 10px 20px;
                font-size: 14px;
            }
            
            .gallery-grid {
                grid-template-columns: 1fr;
            }
            
            .gallery-grid img {
                height: 200px;
            }
        }

