/* Retro Style */
        :root {
            --primary-color: #8B4513;
            --secondary-color: #D2B48C;
            --accent-color: #F5DEB3;
            --text-color: #333333;
            --light-gray: #E0E0E0;
            --dark-gray: #555555;
            --highlight-color: #CD853F;
            --border-color: #A0522D;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Georgia', serif;
        }

        body {
            background-color: var(--accent-color);
            color: var(--text-color);
            line-height: 1.6;
            overflow-x: hidden;
            background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%238B4513' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
        }

        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header Styles */
        header {
            background-color: var(--primary-color);
            color: var(--accent-color);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            border-bottom: 3px solid var(--border-color);
        }

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }

        .logo {
            font-size: 24px;
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: var(--accent-color);
            font-family: 'Courier New', monospace;
            text-shadow: 2px 2px 0 var(--border-color);
        }

        nav ul {
            display: flex;
            list-style: none;
        }

        nav ul li {
            margin-left: 25px;
        }

        nav ul li a {
            color: var(--accent-color);
            text-decoration: none;
            font-weight: bold;
            text-transform: uppercase;
            font-size: 14px;
            letter-spacing: 1px;
            transition: all 0.3s;
            border-bottom: 2px solid transparent;
            padding-bottom: 3px;
        }

        nav ul li a:hover {
            color: var(--highlight-color);
            border-bottom-color: var(--highlight-color);
        }

        .burger-menu {
            display: none;
            flex-direction: column;
            cursor: pointer;
        }

        .burger-menu span {
            width: 25px;
            height: 3px;
            background-color: var(--accent-color);
            margin: 3px 0;
            transition: 0.3s;
        }

        /* Hero Section */
        .hero {
            height: 100vh;
            background: linear-gradient(rgba(139, 69, 19, 0.7), rgba(139, 69, 19, 0.7)), url('../img/01.webp');
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            text-align: center;
            color: var(--accent-color);
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: repeating-linear-gradient(
                45deg,
                rgba(210, 180, 140, 0.1),
                rgba(210, 180, 140, 0.1) 10px,
                rgba(245, 222, 179, 0.1) 10px,
                rgba(245, 222, 179, 0.1) 20px
            );
        }

        .hero-content {
            max-width: 800px;
            margin: 0 auto;
            padding: 0 20px;
            animation: fadeInUp 1s ease;
            position: relative;
            z-index: 1;
        }

        .hero h1 {
            font-size: 48px;
            font-weight: bold;
            text-transform: uppercase;
            margin-bottom: 20px;
            letter-spacing: 2px;
            color: var(--accent-color);
            text-shadow: 3px 3px 0 var(--border-color);
            font-family: 'Courier New', monospace;
        }

        .hero p {
            font-size: 20px;
            margin-bottom: 30px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
            font-style: italic;
        }

        .btn {
            display: inline-block;
            background-color: var(--highlight-color);
            color: var(--accent-color);
            padding: 12px 30px;
            text-decoration: none;
            text-transform: uppercase;
            font-weight: bold;
            border: none;
            cursor: pointer;
            transition: all 0.3s;
            letter-spacing: 1px;
            font-size: 16px;
            border: 2px solid var(--border-color);
            box-shadow: 4px 4px 0 var(--border-color);
        }

        .btn:hover {
            background-color: var(--primary-color);
            transform: translate(-2px, -2px);
            box-shadow: 6px 6px 0 var(--border-color);
        }

        /* About Section */
        .about {
            padding: 100px 0;
            background-color: var(--accent-color);
            position: relative;
        }

        .about::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 10px;
            background: repeating-linear-gradient(
                90deg,
                var(--primary-color),
                var(--primary-color) 20px,
                var(--highlight-color) 20px,
                var(--highlight-color) 40px
            );
        }

        .section-title {
            text-align: center;
            margin-bottom: 50px;
        }

        .section-title h2 {
            font-size: 36px;
            text-transform: uppercase;
            color: var(--primary-color);
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
            font-family: 'Courier New', monospace;
            text-shadow: 2px 2px 0 var(--border-color);
        }

        .section-title h2:after {
            content: "";
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 100%;
            height: 3px;
            background-color: var(--highlight-color);
        }

        .about-content {
            display: flex;
            align-items: center;
            gap: 50px;
        }

        .about-text {
            flex: 1;
            background-color: var(--secondary-color);
            padding: 30px;
            border: 3px solid var(--border-color);
            box-shadow: 8px 8px 0 rgba(0, 0, 0, 0.1);
        }

        .about-text h3 {
            font-size: 24px;
            margin-bottom: 20px;
            color: var(--primary-color);
            text-transform: uppercase;
            font-family: 'Courier New', monospace;
        }

        .about-text p {
            margin-bottom: 20px;
            font-size: 16px;
        }

        .about-image {
            flex: 1;
            border: 5px solid var(--border-color);
            box-shadow: 8px 8px 0 rgba(0, 0, 0, 0.1);
            transform: rotate(2deg);
        }

        .about-image img {
            width: 100%;
            height: auto;
            display: block;
        }

        /* Products Section */
        .products {
            padding: 100px 0;
            background-color: var(--secondary-color);
            position: relative;
        }

        .products::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 10px;
            background: repeating-linear-gradient(
                90deg,
                var(--highlight-color),
                var(--highlight-color) 20px,
                var(--primary-color) 20px,
                var(--primary-color) 40px
            );
        }

        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }

        .product-card {
            background-color: var(--accent-color);
            border: 3px solid var(--border-color);
            padding: 25px;
            text-align: center;
            transition: all 0.3s;
            box-shadow: 6px 6px 0 rgba(0, 0, 0, 0.1);
            position: relative;
        }

        .product-card::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: repeating-linear-gradient(
                90deg,
                var(--primary-color),
                var(--primary-color) 10px,
                var(--highlight-color) 10px,
                var(--highlight-color) 20px
            );
        }

        .product-card:hover {
            transform: translateY(-10px);
            box-shadow: 10px 10px 0 rgba(0, 0, 0, 0.1);
        }

        .product-card img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            margin-bottom: 20px;
            border: 3px solid var(--border-color);
        }

        .product-card h3 {
            font-size: 22px;
            margin-bottom: 15px;
            color: var(--primary-color);
            text-transform: uppercase;
            font-family: 'Courier New', monospace;
        }

        .product-card p {
            margin-bottom: 20px;
        }

        /* Prices Section */
        .prices {
            padding: 100px 0;
            background-color: var(--accent-color);
            position: relative;
        }

        .prices::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 10px;
            background: repeating-linear-gradient(
                90deg,
                var(--highlight-color),
                var(--highlight-color) 20px,
                var(--primary-color) 20px,
                var(--primary-color) 40px
            );
        }

        .prices-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }

        .price-card {
            background-color: var(--secondary-color);
            border: 3px solid var(--border-color);
            padding: 30px;
            text-align: center;
            position: relative;
            transition: all 0.3s;
            box-shadow: 6px 6px 0 rgba(0, 0, 0, 0.1);
        }

        .price-card.featured {
            transform: scale(1.05);
            border-color: var(--highlight-color);
            box-shadow: 8px 8px 0 rgba(0, 0, 0, 0.1);
        }

        .price-card:hover {
            transform: translateY(-10px);
            box-shadow: 10px 10px 0 rgba(0, 0, 0, 0.1);
        }

        .price-card.featured:hover {
            transform: scale(1.05) translateY(-10px);
        }

        .price-card h3 {
            font-size: 24px;
            margin-bottom: 15px;
            color: var(--primary-color);
            text-transform: uppercase;
            font-family: 'Courier New', monospace;
        }

        .price {
            font-size: 36px;
            font-weight: bold;
            color: var(--highlight-color);
            margin: 20px 0;
            font-family: 'Courier New', monospace;
        }

        .price-card ul {
            list-style: none;
            margin-bottom: 30px;
        }

        .price-card ul li {
            padding: 8px 0;
            border-bottom: 1px dashed var(--border-color);
        }

        .price-card .btn {
            width: 100%;
        }

        /* Gallery Section */
        .gallery {
            padding: 100px 0;
            background-color: var(--secondary-color);
            position: relative;
        }

        .gallery::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 10px;
            background: repeating-linear-gradient(
                90deg,
                var(--primary-color),
                var(--primary-color) 20px,
                var(--highlight-color) 20px,
                var(--highlight-color) 40px
            );
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin-top: 50px;
        }

        .gallery-item {
            position: relative;
            overflow: hidden;
            height: 250px;
            border: 3px solid var(--border-color);
            box-shadow: 6px 6px 0 rgba(0, 0, 0, 0.1);
            transform: rotate(-1deg);
            transition: all 0.3s;
        }

        .gallery-item:nth-child(even) {
            transform: rotate(1deg);
        }

        .gallery-item:hover {
            transform: rotate(0) scale(1.03);
            box-shadow: 10px 10px 0 rgba(0, 0, 0, 0.1);
        }

        .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 {
            padding: 100px 0;
            background-color: var(--accent-color);
            position: relative;
        }

        .feedback::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 10px;
            background: repeating-linear-gradient(
                90deg,
                var(--highlight-color),
                var(--highlight-color) 20px,
                var(--primary-color) 20px,
                var(--primary-color) 40px
            );
        }

        .feedback-slider {
            position: relative;
            margin-top: 50px;
            overflow: hidden;
        }

        .feedback-container {
            display: flex;
            transition: transform 0.5s ease;
        }

        .feedback-item {
            min-width: 100%;
            padding: 0 20px;
            text-align: center;
        }

        .feedback-item img {
            width: 100px;
            height: 100px;
            border-radius: 50%;
            object-fit: cover;
            margin: 0 auto 20px;
            border: 3px solid var(--border-color);
            box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.1);
        }

        .feedback-item p {
            font-style: italic;
            margin-bottom: 20px;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
            background-color: var(--secondary-color);
            padding: 20px;
            border: 2px solid var(--border-color);
            box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.1);
            position: relative;
        }

        .feedback-item p::before {
            content: "";
            font-size: 60px;
            position: absolute;
            top: -20px;
            left: 10px;
            color: var(--highlight-color);
            opacity: 0.5;
        }

        .feedback-item p::after {
            content: "";
            font-size: 60px;
            position: absolute;
            bottom: -50px;
            right: 10px;
            color: var(--highlight-color);
            opacity: 0.5;
        }

        .feedback-item h4 {
            font-size: 18px;
            color: var(--primary-color);
            font-family: 'Courier New', monospace;
        }

        .feedback-nav {
            display: flex;
            justify-content: center;
            margin-top: 30px;
        }

        .feedback-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: var(--dark-gray);
            margin: 0 5px;
            cursor: pointer;
            border: 1px solid var(--border-color);
        }

        .feedback-dot.active {
            background-color: var(--highlight-color);
        }

        /* FAQ Section */
        .faq {
            padding: 100px 0;
            background-color: var(--secondary-color);
            position: relative;
        }

        .faq::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 10px;
            background: repeating-linear-gradient(
                90deg,
                var(--primary-color),
                var(--primary-color) 20px,
                var(--highlight-color) 20px,
                var(--highlight-color) 40px
            );
        }

        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-item {
            margin-bottom: 20px;
            border: 2px solid var(--border-color);
            box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.1);
        }

        .faq-question {
            background-color: var(--primary-color);
            color: var(--accent-color);
            padding: 15px 20px;
            cursor: pointer;
            font-weight: bold;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-family: 'Courier New', monospace;
        }

        .faq-question:after {
            content: "+";
            font-size: 24px;
        }

        .faq-question.active:after {
            content: "-";
        }

        .faq-answer {
            padding: 0 20px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease, padding 0.3s ease;
            background-color: var(--accent-color);
        }

        .faq-answer.active {
            padding: 20px;
            max-height: 500px;
        }

        /* Contact Form */
        .contact {
            padding: 100px 0;
            background-color: var(--accent-color);
            position: relative;
        }

        .contact::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 10px;
            background: repeating-linear-gradient(
                90deg,
                var(--highlight-color),
                var(--highlight-color) 20px,
                var(--primary-color) 20px,
                var(--primary-color) 40px
            );
        }

        .contact-form {
            max-width: 600px;
            margin: 0 auto;
            background-color: var(--secondary-color);
            padding: 30px;
            border: 3px solid var(--border-color);
            box-shadow: 8px 8px 0 rgba(0, 0, 0, 0.1);
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: bold;
            color: var(--primary-color);
            font-family: 'Courier New', monospace;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 12px;
            border: 2px solid var(--border-color);
            font-size: 16px;
            background-color: var(--accent-color);
            font-family: 'Georgia', serif;
        }

        .form-group textarea {
            height: 150px;
            resize: vertical;
        }

        /* Disclaimer */
        .disclaimer {
            background-color: var(--primary-color);
            color: var(--accent-color);
            padding: 20px 0;
            text-align: center;
            font-size: 14px;
            border-top: 5px solid var(--highlight-color);
        }

        /* Footer */
        footer {
            background-color: var(--primary-color);
            color: var(--accent-color);
            padding: 50px 0 20px;
            border-top: 5px solid var(--highlight-color);
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-bottom: 30px;
        }

        .footer-column h3 {
            font-size: 20px;
            margin-bottom: 20px;
            color: var(--highlight-color);
            text-transform: uppercase;
            font-family: 'Courier New', monospace;
            text-shadow: 1px 1px 0 var(--border-color);
        }

        .footer-column ul {
            list-style: none;
        }

        .footer-column ul li {
            margin-bottom: 10px;
        }

        .footer-column ul li a {
            color: var(--accent-color);
            text-decoration: none;
            transition: all 0.3s;
            border-bottom: 1px dashed transparent;
        }

        .footer-column ul li a:hover {
            color: var(--highlight-color);
            border-bottom-color: var(--highlight-color);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            border-top: 2px dashed var(--highlight-color);
            font-size: 14px;
        }

        /* Cookie Banner */
        .cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background-color: var(--primary-color);
            color: var(--accent-color);
            padding: 20px;
            box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
            z-index: 1001;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transform: translateY(100%);
            transition: transform 0.5s ease;
            border-top: 3px solid var(--highlight-color);
        }

        .cookie-banner.active {
            transform: translateY(0);
        }

        .cookie-text {
            max-width: 80%;
        }

        .cookie-buttons {
            display: flex;
            gap: 10px;
        }

        .cookie-btn {
            padding: 8px 16px;
            background-color: var(--highlight-color);
            color: var(--accent-color);
            border: 2px solid var(--border-color);
            cursor: pointer;
            font-weight: bold;
            transition: all 0.3s;
            font-family: 'Courier New', monospace;
            box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.1);
        }

        .cookie-btn:hover {
            background-color: var(--primary-color);
            transform: translate(-1px, -1px);
            box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.1);
        }

        .cookie-btn.decline {
            background-color: transparent;
            border: 2px solid var(--accent-color);
        }

        /* Popup */
        .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: 1002;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.3s, visibility 0.3s;
        }

        .popup.active {
            opacity: 1;
            visibility: visible;
        }

        .popup-content {
            background-color: var(--accent-color);
            padding: 30px;
            border-radius: 5px;
            text-align: center;
            max-width: 500px;
            width: 90%;
            border: 3px solid var(--border-color);
            box-shadow: 8px 8px 0 rgba(0, 0, 0, 0.1);
            transform: scale(0.7);
            transition: transform 0.3s;
        }

        .popup.active .popup-content {
            transform: scale(1);
        }

        .popup h3 {
            font-size: 24px;
            margin-bottom: 15px;
            color: var(--primary-color);
            font-family: 'Courier New', monospace;
            text-shadow: 1px 1px 0 var(--border-color);
        }

        .popup p {
            margin-bottom: 20px;
        }

        .popup-close {
            margin-top: 20px;
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Responsive */
        @media (max-width: 768px) {
            nav ul {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background-color: var(--primary-color);
                flex-direction: column;
                padding: 20px;
                border-top: 3px solid var(--highlight-color);
            }

            nav ul.active {
                display: flex;
            }

            nav ul li {
                margin: 10px 0;
            }

            .burger-menu {
                display: flex;
            }

            .hero h1 {
                font-size: 36px;
            }

            .hero p {
                font-size: 18px;
            }

            .about-content {
                flex-direction: column;
            }

            .price-card.featured {
                transform: scale(1);
            }

            .cookie-banner {
                flex-direction: column;
                text-align: center;
            }

            .cookie-text {
                max-width: 100%;
                margin-bottom: 15px;
            }
        }

