:root {
            --primary-color: #6a0572;
            --secondary-color: #f7a268;
            --accent-color: #494949;
            --text-color: #e0e0e0;
            --background-color: #2b2b2b;
            --sub-text-color: #a0a0a0;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
            transition: color 0.3s ease, background-color 0.3s ease;
        }

        html {
            scroll-behavior: smooth;
        }
        
        body {
            background: var(--background-color);
            color: var(--text-color);
            line-height: 1.6;
        }

        a {
            color: var(--secondary-color);
            text-decoration: none;
        }

        a:hover {
            text-decoration: underline;
        }

        h1, h2, h3 {
            color: var(--secondary-color);
        }

        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background: rgba(43, 43, 43, 0.9);
            backdrop-filter: blur(5px);
            z-index: 1000;
            padding: 1rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
        }
        
        .logo {
            font-size: 1.8rem;
            font-weight: bold;
            color: var(--secondary-color);
            letter-spacing: 2px;
        }

        .nav-menu {
            display: flex;
            gap: 2rem;
            flex-wrap: wrap;
        }

        .nav-menu a {
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: var(--text-color);
        }

        .nav-menu a:hover {
            color: var(--secondary-color);
            text-decoration: none;
        }

        .burger-menu {
            display: none;
            flex-direction: column;
            cursor: pointer;
        }

        .burger-menu span {
            display: block;
            width: 25px;
            height: 3px;
            background: var(--secondary-color);
            margin: 5px 0;
            transition: all 0.3s ease;
        }

        .nav-menu.active {
            display: flex;
            flex-direction: column;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            background: rgba(43, 43, 43, 0.95);
            padding: 1rem 0;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
        }
        
        .nav-menu.active a {
            text-align: center;
            padding: 1rem 0;
        }

        main {
            padding-top: 80px;
        }

        section {
            padding: 4rem 2rem;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .section-content {
            z-index: 2;
            max-width: 900px;
            width: 100%;
        }

        .section-background {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            filter: grayscale(100%) blur(5px);
            z-index: 1;
            transform: translateZ(-10px) scale(2);
        }

        .hero {
            position: relative;
            color: #fff;
            padding-top: 120px;
            min-height: 100vh;
        }

        .hero-background {
            background-image: url('../img/03.webp');
        }

        .hero h1 {
            font-size: 4rem;
            text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.8);
            margin-bottom: 1rem;
        }

        .hero p {
            font-size: 1.5rem;
            text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.6);
            margin-bottom: 2rem;
            color: var(--text-color);
        }

        .cta-button {
            display: inline-block;
            background: var(--secondary-color);
            color: var(--background-color);
            padding: 0.8rem 2rem;
            font-weight: bold;
            border-radius: 50px;
            text-transform: uppercase;
            letter-spacing: 1px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .cta-button:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 15px rgba(0, 0, 0, 0.5);
        }

        h2 {
            font-size: 3rem;
            margin-bottom: 2rem;
            position: relative;
            z-index: 2;
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.6s ease-out, transform 0.6s ease-out;
        }
        
        .animated-heading.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .about .section-background { background-image: url('../img/01.webp'); }
        .products .section-background { background-image: url('../img/08.webp'); }
        .prices .section-background { background-image: url('../img/02.webp'); }
        .gallery .section-background { background-image: url('../img/10.webp'); }
        .feedback .section-background { background-image: url('../img/04.webp'); }
        .faq .section-background { background-image: url('../img/05.webp'); }

        .about h2 { color: var(--text-color); }
        .about p { font-size: 1.2rem; margin-bottom: 1.5rem; color: var(--sub-text-color); }
        .about li { font-size: 1.1rem; text-align: left; margin: 0.5rem 0; color: var(--sub-text-color); }
        .about ul { list-style: none; display: flex; flex-direction: column; align-items: flex-start; }

        .products h3 { font-size: 1.8rem; margin-bottom: 1rem; }
        .products p { font-size: 1.1rem; color: var(--sub-text-color); }
        .product-card-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 2rem;
            margin-top: 2rem;
        }
        .product-card {
            background: rgba(73, 73, 73, 0.8);
            backdrop-filter: blur(5px);
            padding: 1.5rem;
            border-radius: 15px;
            width: 300px;
            text-align: left;
            box-shadow: 0 4px 10px rgba(0,0,0,0.5);
            transform: translateY(20px);
            opacity: 0;
            transition: transform 0.6s ease, opacity 0.6s ease;
        }
        .product-card.visible {
            transform: translateY(0);
            opacity: 1;
        }
        .product-card img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            border-radius: 10px;
            margin-bottom: 1rem;
        }

        .price-card-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 2rem;
            margin-top: 2rem;
        }
        .price-card {
            background: rgba(73, 73, 73, 0.8);
            backdrop-filter: blur(5px);
            padding: 2rem;
            border-radius: 15px;
            width: 300px;
            box-shadow: 0 4px 10px rgba(0,0,0,0.5);
            text-align: center;
            transform: translateY(20px);
            opacity: 0;
            transition: transform 0.6s ease, opacity 0.6s ease;
        }
        .price-card.visible {
            transform: translateY(0);
            opacity: 1;
        }
        .price-card.visible:nth-child(2) { transition-delay: 0.2s; }
        .price-card.visible:nth-child(3) { transition-delay: 0.4s; }

        .price-card h3 {
            font-size: 2rem;
            margin-bottom: 1rem;
            color: var(--secondary-color);
        }
        .price-card p.price {
            font-size: 2.5rem;
            font-weight: bold;
            color: var(--secondary-color);
        }
        .price-card ul {
            list-style: none;
            text-align: left;
            margin: 1.5rem 0;
            color: var(--sub-text-color);
        }
        .price-card li {
            margin-bottom: 0.5rem;
        }

        .gallery-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1rem;
            margin-top: 2rem;
            max-width: 1200px;
            width: 100%;
        }

        .gallery-item {
            overflow: hidden;
            border-radius: 10px;
            box-shadow: 0 4px 10px rgba(0,0,0,0.5);
            transform: translateY(20px);
            opacity: 0;
            transition: transform 0.6s ease, opacity 0.6s ease;
        }
        .gallery-item.visible {
            transform: translateY(0);
            opacity: 1;
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: transform 0.3s ease;
        }

        .gallery-item:hover img {
            transform: scale(1.1);
        }
        
        .feedback-slider {
            position: relative;
            width: 100%;
            max-width: 800px;
            overflow: hidden;
        }

        .slider-wrapper {
            display: flex;
            transition: transform 0.5s ease-in-out;
        }
        
        .feedback-slide {
            flex-shrink: 0;
            width: calc(100% - 1em);
            padding: 2rem;
            background: rgba(73, 73, 73, 0.8);
            backdrop-filter: blur(5px);
            border-radius: 15px;
            box-shadow: 0 4px 10px rgba(0,0,0,0.5);
            text-align: left;
            margin: 0 1em;
        }

        .feedback-slide p {
            font-style: italic;
            margin-bottom: 1rem;
            color: var(--sub-text-color);
        }
        
        .feedback-slide .author {
            font-weight: bold;
            color: var(--secondary-color);
        }

        .slider-nav {
            position: absolute;
            top: 50%;
            width: 100%;
            display: flex;
            justify-content: space-between;
            transform: translateY(-50%);
        }

        .slider-nav button {
            background: rgba(247, 162, 104, 0.7);
            border: none;
            color: var(--background-color);
            font-size: 1.5rem;
            cursor: pointer;
            padding: 0.5rem;
            border-radius: 50%;
            width: 45px;
            height: 45px;
            z-index: 10;
            transition: background 0.3s ease;
        }

        .slider-nav button:hover {
            background: var(--secondary-color);
        }

        .faq-item {
            width: 100%;
            max-width: 800px;
            margin-bottom: 1rem;
            text-align: left;
        }
        
        .faq-question {
            background: rgba(73, 73, 73, 0.8);
            backdrop-filter: blur(5px);
            padding: 1rem;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-radius: 10px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.3);
            font-weight: bold;
            color: var(--secondary-color);
        }

        .faq-answer {
            background: rgba(50, 50, 50, 0.9);
    
            border-radius: 0 0 10px 10px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease-out, padding 0.4s ease-out;
            color: var(--sub-text-color);
        }
        
        .faq-answer.open {
            max-height: 500px;
            padding: 1rem;
        }

        .contact-form-container {
            background: rgba(43, 43, 43, 0.9);
            backdrop-filter: blur(5px);
            padding: 2rem;
            border-radius: 15px;
            box-shadow: 0 4px 10px rgba(0,0,0,0.5);
            width: 100%;
            max-width: 500px;
            margin-top: 2rem;
        }
        
        .contact-form-container h3 {
            margin-bottom: 1.5rem;
            text-align: center;
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: bold;
            color: var(--secondary-color);
        }

        .form-group input {
            width: 100%;
            padding: 0.8rem;
            border: 1px solid var(--accent-color);
            background: var(--background-color);
            color: var(--text-color);
            border-radius: 5px;
        }
        
        .form-group input:focus {
            outline: none;
            border-color: var(--secondary-color);
        }

        .submit-btn {
            display: block;
            width: 100%;
            padding: 1rem;
            background: var(--secondary-color);
            color: var(--background-color);
            border: none;
            border-radius: 50px;
            font-weight: bold;
            cursor: pointer;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: background 0.3s ease;
        }

        .submit-btn:hover {
            background: #e68d50;
        }

        .popup {
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%) scale(0.8);
            background: rgba(73, 73, 73, 0.95);
            backdrop-filter: blur(5px);
            padding: 2rem;
            border-radius: 15px;
            box-shadow: 0 8px 20px rgba(0,0,0,0.6);
            z-index: 1000;
            text-align: center;
            color: var(--text-color);
            visibility: hidden;
            opacity: 0;
            transition: visibility 0s 0.3s, opacity 0.3s ease, transform 0.3s ease;
        }
        
        .popup.visible {
            visibility: visible;
            opacity: 1;
            transform: translate(-50%, -50%) scale(1);
            transition-delay: 0s;
        }

        .disclaimer {
            padding: 2rem;
            background: rgba(0, 0, 0, 0.3);
            text-align: center;
            font-size: 0.9rem;
            color: var(--sub-text-color);
        }

        .cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background: rgba(43, 43, 43, 0.95);
            backdrop-filter: blur(5px);
            padding: 1.5rem;
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 1.5rem;
            box-shadow: 0 -2px 10px rgba(0,0,0,0.5);
            z-index: 1000;
            transform: translateY(100%);
            transition: transform 0.5s ease-out;
        }

        .cookie-banner.visible {
            transform: translateY(0);
        }

        .cookie-banner p {
            font-size: 0.9rem;
            color: var(--sub-text-color);
        }

        .cookie-banner a {
            color: var(--secondary-color);
        }

        .accept-cookies {
            background: var(--secondary-color);
            color: var(--background-color);
            padding: 0.5rem 1.5rem;
            border: none;
            border-radius: 50px;
            cursor: pointer;
            font-weight: bold;
            transition: background 0.3s ease;
        }

        .accept-cookies:hover {
            background: #e68d50;
        }

        footer {
            background: var(--accent-color);
            padding: 3rem 2rem;
            text-align: center;
            color: var(--text-color);
        }
        
        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-around;
            align-items: flex-start;
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .footer-section {
            flex: 1;
            min-width: 250px;
            text-align: left;
        }

        .footer-section h3 {
            color: var(--secondary-color);
            margin-bottom: 1rem;
        }
        
        .footer-section p, .footer-section ul {
            color: var(--sub-text-color);
            list-style: none;
        }

        .footer-section li {
            margin-bottom: 0.5rem;
        }

        .footer-section a {
            color: var(--sub-text-color);
            transition: color 0.3s ease;
        }
        .footer-section a:hover {
            color: var(--secondary-color);
        }
        
        .copyright {
            margin-top: 2rem;
            font-size: 0.8rem;
            color: var(--sub-text-color);
        }
        
        @media (max-width: 768px) {
            .nav-menu {
                display: none;
            }
            .burger-menu {
                display: flex;
            }
            .hero h1 {
                font-size: 2.5rem;
            }
            h2 {
                font-size: 2rem;
            }
            .cookie-banner {
                flex-direction: column;
                text-align: center;
            }
            .footer-content {
                flex-direction: column;
                align-items: center;
            }
            .footer-section {
                text-align: center;
            }

            .slider-nav button{
                width: 32px;
                height: 32px;
                font-size: 1em;
            }
        }

