* {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
            scroll-behavior: smooth;
        }
        :root {
            --primary-color: #f15a24;
            --secondary-color: #f9d8a5;
            --background-color: #1a1a1a;
            --text-color: #f0f0f0;
            --header-bg: rgba(26, 26, 26, 0.9);
            --font-family: 'Georgia', serif;
            --accent-color: #d1b19a;
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        @keyframes scaleUp {
            from { transform: scale(1); }
            to { transform: scale(1.05); }
        }

        body {
            font-family: var(--font-family);
            background-color: var(--background-color);
            color: var(--text-color);
            line-height: 1.6;
            margin: 0;
            padding-top: 60px;
            overflow-x: hidden;
        }

        html {
            scroll-behavior: smooth;
        }

        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: var(--header-bg);
            backdrop-filter: blur(10px);
            z-index: 1000;
            padding: 1rem 4rem;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 1.5rem;
            font-weight: bold;
            color: var(--primary-color);
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        nav a {
            color: var(--text-color);
            text-decoration: none;
            margin-left: 2rem;
            font-weight: 500;
            transition: color 0.3s;
        }

        nav 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(--text-color);
            margin: 4px 0;
            transition: all 0.3s ease;
        }

        @media (max-width: 768px) {
            header{
                display: flex;
                justify-content: space-between;
                align-items:center;
            }
            .nav-links {
                position: fixed;
                right: 0;
                top: 60px;
                background-color: var(--background-color);
                width: 100%;
                display: flex;
                overflow: hidden;
                transition: height 0.5s ease;
                flex-direction: column;
                justify-content: center;
                align-items: center;
                box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            }
            nav.open {
                height: calc(100vh - 60px);
            }
            nav a {
                margin: 1.5rem 0;
                font-size: 1.2rem;
            }
            .burger-menu {
                display: flex;
            }
            .nav-links {
                display: none;
            }
            .nav-links.open {
                display: flex;
            }
        }

        main {
            padding: 2rem;
        }

        section {
            padding: 4rem 2rem;
            text-align: center;
            opacity: 0;
            animation: fadeIn 1s forwards;
            animation-delay: 0.3s;
        }

        .hero {
            position: relative;
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            color: var(--text-color);
            background-image: url('../img/03.webp');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
        }

        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 1rem;
            z-index: 1;
            animation: fadeIn 1.5s ease-in-out;
        }

        .hero p {
            font-size: 1.5rem;
            z-index: 1;
            max-width: 800px;
            animation: fadeIn 1.5s ease-in-out;
            animation-delay: 0.5s;
        }

        .btn {
            background-color: var(--primary-color);
            color: #fff;
            padding: 1rem 2rem;
            text-decoration: none;
            border-radius: 50px;
            margin-top: 2rem;
            transition: transform 0.3s, box-shadow 0.3s;
            border: none;
            cursor: pointer;
            z-index: 1;
            animation: fadeIn 1.5s ease-in-out;
            animation-delay: 0.7s;
        }

        .btn:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 15px rgba(241, 90, 36, 0.4);
        }

        h2 {
            font-size: 2.5rem;
            color: var(--primary-color);
            margin-bottom: 2rem;
            text-transform: uppercase;
        }

        .about .content {
            display: flex;
            gap: 2rem;
            align-items: center;
            text-align: left;
            flex-wrap: wrap;
        }

        .about .text-content {
            flex: 1;
            min-width: 300px;
        }

        .about .image-container {
            flex: 1;
            min-width: 300px;
        }

        .about img {
            width: 100%;
            height: auto;
            border-radius: 10px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
            transition: transform 0.3s;
        }

        .about img:hover {
            transform: scale(1.05);
        }

        .products .product-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .products .product-item {
            background-color: #2a2a2a;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
            text-align: left;
            transition: transform 0.3s;
        }

        .products .product-item:hover {
            transform: translateY(-10px);
        }

        .products .product-item img {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }

        .products .product-item-content {
            padding: 1.5rem;
        }

        .products h3 {
            color: var(--primary-color);
            margin-top: 0;
        }

        .prices .price-cards {
            display: flex;
            justify-content: center;
            gap: 2rem;
            flex-wrap: wrap;
        }

        .prices .price-card {
            background-color: #2a2a2a;
            padding: 2rem;
            border-radius: 10px;
            width: 300px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
            transition: transform 0.3s;
        }

        .prices .price-card:hover {
            transform: scale(1.05);
        }

        .prices h3 {
            color: var(--primary-color);
            font-size: 1.8rem;
            margin-top: 0;
        }

        .prices .price {
            font-size: 3rem;
            font-weight: bold;
            color: var(--accent-color);
            margin: 1rem 0;
        }

        .prices ul {
            list-style: none;
            padding: 0;
            text-align: left;
        }

        .prices li {
            margin-bottom: 0.5rem;
            display: flex;
            align-items: center;
        }

        .prices li::before {
            content: '✔';
            color: var(--primary-color);
            margin-right: 10px;
        }

        .gallery-wrapper {
            position: relative;
            overflow: hidden;
            width: 100%;
            margin: 0 auto;
        }

        .gallery {
            display: flex;
            transition: transform 0.5s ease-in-out;
            scroll-behavior: smooth;
        }

        .gallery img {
            width: 100%;
            height: auto;
            flex-shrink: 0;
        }

        .gallery-controls {
            display: flex;
            justify-content: center;
            margin-top: 1rem;
        }

        .gallery-controls button {
            background: var(--primary-color);
            border: none;
            color: white;
            padding: 10px;
            margin: 0 5px;
            cursor: pointer;
            border-radius: 50%;
            font-size: 1rem;
            transition: background 0.3s;
        }

        .gallery-controls button:hover {
            background: var(--accent-color);
        }

        .feedback .slider-container {
            position: relative;
            overflow: hidden;
            padding: 2rem;
        }

        .feedback .review-slider {
            display: flex;
            transition: transform 0.5s ease-in-out;
        }

        .feedback .review-card {
            flex: 0 0 100%;
            background-color: #2a2a2a;
            padding: 2rem;
            border-radius: 10px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
            box-sizing: border-box;
            text-align: left;
        }

        .feedback .review-card blockquote {
            margin: 0;
            font-style: italic;
        }

        .feedback .review-card cite {
            display: block;
            margin-top: 1rem;
            font-style: normal;
            font-weight: bold;
            color: var(--accent-color);
        }

        .feedback-controls {
            display: flex;
            justify-content: center;
            margin-top: 1rem;
        }

        .feedback-controls button {
            background: var(--primary-color);
            border: none;
            color: white;
            padding: 10px;
            margin: 0 5px;
            cursor: pointer;
            border-radius: 50%;
            font-size: 1rem;
            transition: background 0.3s;
        }

        .feedback-controls button:hover {
            background: var(--accent-color);
        }

        .faq .faq-item {
            background-color: #2a2a2a;
            margin-bottom: 1rem;
            border-radius: 8px;
            text-align: left;
            overflow: hidden;
            transition: background-color 0.3s;
        }

        .faq .faq-item:hover {
            background-color: #333;
        }

        .faq .faq-question {
            padding: 1.5rem 2em;
            display: block;
            cursor: pointer;
            font-weight: bold;
            font-size: 1.1rem;
            position: relative;
        }

        .faq .faq-question::after {
            content: '+';
            position: absolute;
            right: 1.5rem;
            top: 50%;
            transform: translateY(-50%);
            font-size: 1.5rem;
            transition: transform 0.3s;
        }

        .faq .faq-question.active::after {
            transform: translateY(-50%) rotate(45deg);
        }

        .faq .faq-answer {
            padding: 0 1.5rem;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.5s ease-in-out, padding 0.5s ease-in-out;
        }

        .faq .faq-answer.open {
            max-height: 500px;
            padding: 1.5rem;
        }

        .contact-form form {
            max-width: 600px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
            padding: 2rem;
            background-color: #2a2a2a;
            border-radius: 10px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
        }

        .contact-form label {
            display: none;
        }

        .contact-form input {
            width: 100%;
            padding: 1rem;
            border-radius: 8px;
            border: 1px solid #444;
            background-color: #333;
            color: var(--text-color);
            font-size: 1rem;
            transition: border-color 0.3s;
            box-sizing: border-box;
        }

        .contact-form input:focus {
            outline: none;
            border-color: var(--primary-color);
        }

        .contact-form button {
            background-color: var(--primary-color);
            color: #fff;
            padding: 1rem;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            font-size: 1.1rem;
            transition: background-color 0.3s;
        }

        .contact-form button:hover {
            background-color: var(--accent-color);
        }

        footer {
            background-color: #111;
            color: #ccc;
            padding: 2rem;
            text-align: center;
            border-top: 1px solid #333;
        }

        .footer-content {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1rem;
        }

        .footer-links a {
            color: #ccc;
            text-decoration: none;
            margin: 0 1rem;
            transition: color 0.3s;
        }

        .footer-links a:hover {
            color: var(--primary-color);
        }

        .disclaimer {
            padding: 1rem;
            background-color: #0d0d0d;
            text-align: center;
            font-size: 0.8rem;
            color: #888;
        }

        .cookie-banner {
            position: fixed;
            bottom: 20px;
            left: 20px;
            right: 20px;
            background-color: rgba(0, 0, 0, 0.85);
            backdrop-filter: blur(5px);
            color: #fff;
            padding: 1.5rem;
            border-radius: 10px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 0.9rem;
            z-index: 1001;
        }

        .cookie-banner a {
            color: var(--primary-color);
            text-decoration: underline;
        }

        .cookie-banner button {
            background-color: var(--primary-color);
            color: #fff;
            border: none;
            padding: 0.75rem 1.5rem;
            border-radius: 5px;
            cursor: pointer;
            transition: background-color 0.3s;
        }

        .cookie-banner button:hover {
            background-color: var(--accent-color);
        }

        .popup {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.8);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 2000;
            visibility: hidden;
            opacity: 0;
            transition: visibility 0.3s, opacity 0.3s;
        }

        .popup.active {
            visibility: visible;
            opacity: 1;
        }

        .popup-content {
            background-color: #2a2a2a;
            padding: 3rem;
            border-radius: 10px;
            text-align: center;
            position: relative;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
            animation: fadeIn 0.5s;
        }

        .popup-close {
            position: absolute;
            top: 1rem;
            right: 1.5rem;
            font-size: 2rem;
            color: #888;
            cursor: pointer;
            transition: color 0.3s;
        }

        .popup-close:hover {
            color: var(--primary-color);
        }

        @media (max-width: 768px) {
            .hero h1 { font-size: 2.5rem; }
            .hero p { font-size: 1.2rem; }
            section { padding: 2rem 1rem; }
            .about .content { flex-direction: column; }
            .price-cards { flex-direction: column; }
            h2{
                font-size: 2em !important;
            }
            h1{
                font-size: 1.5em !important;
            }
        }

