* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: Georgia, serif;
            line-height: 1.6;
            color: #333;
            background-color: #f5f0e1;
            overflow-x: hidden;
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Header стили */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: #4a1810;
            color: #f5f0e1;
            padding: 15px 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            font-size: 24px;
            font-weight: bold;
            text-decoration: none;
            color: #f5f0e1;
        }
        
        .logo span {
            color: #d4af37;
        }
        
        nav ul {
            display: flex;
            list-style: none;
        }
        
        nav ul li {
            margin-left: 25px;
        }
        
        nav ul li a {
            color: #f5f0e1;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
        }
        
        nav ul li a:hover {
            color: #d4af37;
        }
        
        .burger {
            display: none;
            cursor: pointer;
        }
        
        .burger span {
            display: block;
            width: 25px;
            height: 3px;
            margin: 5px 0;
            background-color: #f5f0e1;
            transition: all 0.3s ease-in-out;
        }
        
        /* Hero секция */
        .hero {
            height: 100vh;
            background: linear-gradient(rgba(74, 24, 16, 0.8), rgba(74, 24, 16, 0.8)), url('../img/15.webp');
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            text-align: center;
            color: #f5f0e1;
            padding-top: 80px;
            position: relative;
        }
        
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><path fill="rgba(212, 175, 55, 0.1)" d="M0,0 L100,100 M100,0 L0,100" stroke="rgba(212, 175, 55, 0.2)" stroke-width="1"/></svg>');
            opacity: 0.2;
            pointer-events: none;
        }
        
        .hero-content {
            max-width: 800px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }
        
        .hero h1 {
            font-size: 48px;
            margin-bottom: 20px;
            animation: fadeInUp 1s ease-out;
            font-family: Georgia, serif;
            color: #f5f0e1;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        }
        
        .hero p {
            font-size: 20px;
            margin-bottom: 30px;
            animation: fadeInUp 1s ease-out 0.2s;
            animation-fill-mode: both;
            font-style: italic;
        }
        
        .btn {
            display: inline-block;
            background-color: #d4af37;
            color: #4a1810;
            padding: 12px 30px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: bold;
            transition: all 0.3s ease;
            animation: fadeInUp 1s ease-out 0.4s;
            animation-fill-mode: both;
            font-family: Georgia, serif;
            border: 2px solid #d4af37;
        }
        
        .btn:hover {
            background-color: transparent;
            color: #d4af37;
            transform: translateY(-3px);
        }
        
        /* About секция */
        .about {
            padding: 100px 0;
            background-color: #f5f0e1;
            position: relative;
        }
        
        .about::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 10px;
            background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="10" viewBox="0 0 100 10"><rect fill="%23d4af37" width="100" height="10"/></svg>');
            opacity: 0.5;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }
        
        .section-title h2 {
            font-size: 36px;
            color: #4a1810;
            position: relative;
            display: inline-block;
            padding-bottom: 15px;
            font-family: Georgia, serif;
        }
        
        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background-color: #d4af37;
        }
        
        .about-content {
            display: flex;
            align-items: center;
            gap: 50px;
        }
        
        .about-text {
            flex: 1;
        }
        
        .about-text h3 {
            font-size: 24px;
            color: #4a1810;
            margin-bottom: 20px;
            font-family: Georgia, serif;
        }
        
        .about-text p {
            margin-bottom: 20px;
            color: #333;
        }
        
        .about-image {
            flex: 1;
            position: relative;
        }
        
        .about-image::before {
            content: '';
            position: absolute;
            top: -15px;
            left: -15px;
            right: -15px;
            bottom: -15px;
            border: 2px solid #d4af37;
            z-index: 0;
        }
        
        .about-image img {
            width: 100%;
            border-radius: 5px;
            position: relative;
            z-index: 1;
        }
        
        /* Products секция */
        .products {
            padding: 100px 0;
            background-color: #1a4d2e;
            position: relative;
        }
        
        .products::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 10px;
            background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="10" viewBox="0 0 100 10"><rect fill="%23d4af37" width="100" height="10"/></svg>');
            opacity: 0.5;
        }
        
        .products .section-title h2 {
            color: #f5f0e1;
        }
        
        .products .section-title h2::after {
            background-color: #d4af37;
        }
        
        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .product-card {
            background-color: #f5f0e1;
            border-radius: 5px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
            position: relative;
        }
        
        .product-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background-color: #d4af37;
        }
        
        .product-card:hover {
            transform: translateY(-10px);
        }
        
        .product-image {
            height: 200px;
            overflow: hidden;
        }
        
        .product-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .product-card:hover .product-image img {
            transform: scale(1.1);
        }
        
        .product-info {
            padding: 20px;
        }
        
        .product-info h3 {
            font-size: 22px;
            color: #4a1810;
            margin-bottom: 10px;
            font-family: Georgia, serif;
        }
        
        .product-info p {
            color: #333;
            margin-bottom: 15px;
        }
        
        /* Prices секция */
        .prices {
            padding: 100px 0;
            background-color: #f5f0e1;
            position: relative;
        }
        
        .prices::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 10px;
            background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="10" viewBox="0 0 100 10"><rect fill="%23d4af37" width="100" height="10"/></svg>');
            opacity: 0.5;
        }
        
        .prices-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .price-card {
            background-color: #fff;
            border: 2px solid #d4af37;
            border-radius: 5px;
            padding: 30px;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            position: relative;
        }
        
        .price-card.featured {
            transform: scale(1.05);
            background-color: #f9f4e6;
        }
        
        .price-card.featured::before {
            content: 'NEJPRODÁVANĚJŠÍ';
            position: absolute;
            top: 15px;
            right: -35px;
            background-color: #d4af37;
            color: #4a1810;
            padding: 5px 40px;
            transform: rotate(45deg);
            font-size: 12px;
            font-weight: bold;
        }
        
        .price-card h3 {
            font-size: 24px;
            color: #4a1810;
            margin-bottom: 15px;
            font-family: Georgia, serif;
        }
        
        .price {
            font-size: 36px;
            color: #d4af37;
            font-weight: bold;
            margin-bottom: 20px;
        }
        
        .price-card ul {
            list-style: none;
            margin-bottom: 30px;
            text-align: left;
        }
        
        .price-card ul li {
            padding: 8px 0;
            border-bottom: 1px solid #eee;
            position: relative;
            padding-left: 25px;
        }
        
        .price-card ul li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: #1a4d2e;
            font-weight: bold;
        }
        
        .price-card ul li:last-child {
            border-bottom: none;
        }
        
        /* Gallery секция */
        .gallery {
            padding: 100px 0;
            background-color: #4a1810;
            position: relative;
        }
        
        .gallery::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 10px;
            background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="10" viewBox="0 0 100 10"><rect fill="%23d4af37" width="100" height="10"/></svg>');
            opacity: 0.5;
        }
        
        .gallery .section-title h2 {
            color: #f5f0e1;
        }
        
        .gallery .section-title h2::after {
            background-color: #d4af37;
        }
        
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
        }
        
        .gallery-item {
            height: 250px;
            overflow: hidden;
            border-radius: 5px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            position: relative;
        }
        
        .gallery-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            border: 2px solid #d4af37;
            opacity: 0;
            transition: opacity 0.3s;
            pointer-events: none;
        }
        
        .gallery-item:hover::before {
            opacity: 1;
        }
        
        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .gallery-item:hover img {
            transform: scale(1.1);
        }
        
        /* Feedback секция */
        .feedback {
            padding: 100px 0;
            background-color: #f5f0e1;
            position: relative;
        }
        
        .feedback::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 10px;
            background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="10" viewBox="0 0 100 10"><rect fill="%23d4af37" width="100" height="10"/></svg>');
            opacity: 0.5;
        }
        
        .feedback-slider {
            position: relative;
            max-width: 800px;
            margin: 0 auto;
            overflow: hidden;
        }
        
        .feedback-container {
            display: flex;
            transition: transform 0.5s ease;
        }
        
        .feedback-item {
            min-width: 100%;
            padding: 20px;
            text-align: center;
            background-color: #fff;
            border-radius: 5px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            position: relative;
        }
        
        .feedback-item::before {
            content: '"';
            position: absolute;
            top: 10px;
            left: 20px;
            font-size: 60px;
            color: #d4af37;
            opacity: 0.3;
            font-family: Georgia, serif;
        }
        
        .feedback-item img {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            margin-bottom: 20px;
            object-fit: cover;
            border: 3px solid #d4af37;
        }
        
        .feedback-item h3 {
            font-size: 20px;
            color: #4a1810;
            margin-bottom: 10px;
            font-family: Georgia, serif;
        }
        
        .feedback-item p {
            font-style: italic;
            color: #333;
            margin-bottom: 15px;
            padding: 0 20px;
        }
        
        .rating {
            color: #d4af37;
        }
        
        .slider-controls {
            display: flex;
            justify-content: center;
            margin-top: 30px;
        }
        
        .slider-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: #ddd;
            margin: 0 5px;
            cursor: pointer;
            transition: background-color 0.3s;
        }
        
        .slider-dot.active {
            background-color: #d4af37;
        }
        
        /* FAQ секция */
        .faq {
            padding: 100px 0;
            background-color: #1a4d2e;
            position: relative;
        }
        
        .faq::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 10px;
            background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="10" viewBox="0 0 100 10"><rect fill="%23d4af37" width="100" height="10"/></svg>');
            opacity: 0.5;
        }
        
        .faq .section-title h2 {
            color: #f5f0e1;
        }
        
        .faq .section-title h2::after {
            background-color: #d4af37;
        }
        
        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .faq-item {
            background-color: #f5f0e1;
            border-radius: 5px;
            margin-bottom: 15px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        .faq-question {
            padding: 20px;
            font-size: 18px;
            font-weight: 500;
            color: #4a1810;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-family: Georgia, serif;
        }
        
        .faq-question::after {
            content: '+';
            font-size: 24px;
            transition: transform 0.3s;
            color: #d4af37;
        }
        
        .faq-item.active .faq-question::after {
            transform: rotate(45deg);
        }
        
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }
        
        .faq-item.active .faq-answer {
            max-height: 300px;
        }
        
        .faq-answer-content {
            padding: 0 20px 20px;
            color: #333;
        }
        
        /* Contact форма */
        .contact {
            padding: 100px 0;
            background-color: #f5f0e1;
            position: relative;
        }
        
        .contact::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 10px;
            background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="10" viewBox="0 0 100 10"><rect fill="%23d4af37" width="100" height="10"/></svg>');
            opacity: 0.5;
        }
        
        .contact-form {
            max-width: 600px;
            margin: 0 auto;
            background-color: #fff;
            padding: 30px;
            border-radius: 5px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            border: 2px solid #d4af37;
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
            color: #4a1810;
            font-family: Georgia, serif;
        }
        
        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 12px;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-size: 16px;
            transition: border-color 0.3s;
            font-family: Georgia, serif;
        }
        
        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #d4af37;
        }
        
        .form-group textarea {
            resize: vertical;
            min-height: 120px;
        }
        
        .btn-submit {
            background-color: #d4af37;
            color: #4a1810;
            border: none;
            padding: 12px 30px;
            border-radius: 30px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
            width: 100%;
            font-family: Georgia, serif;
            border: 2px solid #d4af37;
        }
        
        .btn-submit:hover {
            background-color: transparent;
            color: #d4af37;
        }
        
        /* Footer */
        footer {
            background-color: #4a1810;
            color: #f5f0e1;
            padding: 70px 0 20px;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        
        .footer-column h3 {
            font-size: 20px;
            margin-bottom: 20px;
            color: #d4af37;
            font-family: Georgia, serif;
        }
        
        .footer-column ul {
            list-style: none;
        }
        
        .footer-column ul li {
            margin-bottom: 10px;
        }
        
        .footer-column ul li a {
            color: #f5f0e1;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-column ul li a:hover {
            color: #d4af37;
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(245, 240, 225, 0.1);
            font-size: 14px;
        }
        
        /* Disclaimer */
        .disclaimer {
            background-color: #f9f4e6;
            padding: 20px;
            border-radius: 5px;
            margin: 40px 0;
            font-size: 14px;
            color: #666;
            text-align: center;
            border: 1px solid #d4af37;
        }
        
        /* Cookie баннер */
        .cookie-banner {
            position: fixed;
            bottom: 20px;
            left: 20px;
            right: 20px;
            background-color: #4a1810;
            color: #f5f0e1;
            padding: 20px;
            border-radius: 5px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            z-index: 1000;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transform: translateY(150%);
            transition: transform 0.5s ease;
            border: 1px solid #d4af37;
        }
        
        .cookie-banner.show {
            transform: translateY(0);
        }
        
        .cookie-text {
            flex: 1;
            margin-right: 20px;
        }
        
        .cookie-text p {
            margin-bottom: 0;
            color: #f5f0e1;
        }
        
        .cookie-text a {
            color: #d4af37;
        }
        
        .cookie-buttons {
            display: flex;
            gap: 10px;
        }
        
        .cookie-btn {
            padding: 8px 16px;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            font-weight: 500;
            transition: all 0.3s;
            font-family: Georgia, serif;
        }
        
        .cookie-accept {
            background-color: #d4af37;
            color: #4a1810;
        }
        
        .cookie-accept:hover {
            background-color: #b8941f;
        }
        
        .cookie-decline {
            background-color: transparent;
            color: #f5f0e1;
            border: 1px solid #f5f0e1;
        }
        
        .cookie-decline:hover {
            background-color: rgba(245, 240, 225, 0.1);
        }
        
        /* Popup */
        .popup {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            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: #f5f0e1;
            padding: 30px;
            border-radius: 5px;
            text-align: center;
            max-width: 500px;
            width: 90%;
            transform: scale(0.7);
            transition: transform 0.3s;
            border: 2px solid #d4af37;
        }
        
        .popup.show .popup-content {
            transform: scale(1);
        }
        
        .popup h3 {
            font-size: 24px;
            color: #4a1810;
            margin-bottom: 15px;
            font-family: Georgia, serif;
        }
        
        .popup p {
            margin-bottom: 20px;
            color: #333;
        }
        
        .popup-close {
            background-color: #d4af37;
            color: #4a1810;
            border: none;
            padding: 10px 20px;
            border-radius: 5px;
            cursor: pointer;
            font-weight: 500;
            transition: background-color 0.3s;
            font-family: Georgia, serif;
            border: 1px solid #d4af37;
        }
        
        .popup-close:hover {
            background-color: transparent;
            color: #d4af37;
        }
        
        /* Анимации */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        /* Адаптивность */
        @media (max-width: 992px) {
            .about-content {
                flex-direction: column;
            }
            
            .hero h1 {
                font-size: 36px;
            }
            
            .hero p {
                font-size: 18px;
            }
        }
        
        @media (max-width: 768px) {
            nav ul {
                display: none;
            }
            
            .burger {
                display: block;
            }
            
            nav.active ul {
                display: block;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background-color: #4a1810;
                flex-direction: column;
                padding: 20px;
            }
            
            nav.active ul li {
                margin: 10px 0;
            }
            
            .cookie-banner {
                flex-direction: column;
                text-align: center;
            }
            
            .cookie-text {
                margin-right: 0;
                margin-bottom: 15px;
            }
        }
        
        @media (max-width: 576px) {
            .hero h1 {
                font-size: 28px;
            }
            
            .hero p {
                font-size: 16px;
            }
            
            .section-title h2 {
                font-size: 28px;
            }
            
            .price-card.featured {
                transform: scale(1);
            }
        }

