:root {
            --primary-color: #5d5d81;
            --secondary-color: #a491d3;
            --accent-color: #e5b1df;
            --text-color: #2c2c3e;
            --bg-color: #f5f0f9;
            --font-family: 'Georgia', serif;
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: var(--font-family);
            line-height: 1.6;
            color: var(--text-color);
            background-color: var(--bg-color);
        }

        a {
            text-decoration: none;
            color: var(--primary-color);
        }

        ul {
            list-style: none;
        }

        h1, h2, h3 {
            color: var(--primary-color);
            margin-bottom: 1rem;
        }

        h1 {
            font-size: 3rem;
        }

        h2 {
            font-size: 2.5rem;
        }

        h3 {
            font-size: 2rem;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .btn {
            display: inline-block;
            padding: 12px 25px;
            background-color: var(--accent-color);
            color: white;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }

        .btn:hover {
            background-color: #d18dcd;
        }

        header {
            position: fixed;
            width: 100%;
            top: 0;
            left: 0;
            background-color: var(--bg-color);
            padding: 1rem 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: 1.8rem;
            font-weight: bold;
            color: var(--primary-color);
        }

        .nav-menu {
            display: flex;
            gap: 20px;
        }

        .nav-menu a {
            font-weight: bold;
            transition: color 0.3s ease;
        }

        .nav-menu 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) {
            .nav-menu {
                display: none;
                flex-direction: column;
                width: 100%;
                background-color: var(--bg-color);
                position: absolute;
                top: 70px;
                left: 0;
                text-align: center;
                padding: 20px 0;
                box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
            }

            .nav-menu.active {
                display: flex;
            }

            .nav-menu a {
                margin: 10px 0;
            }

            .burger-menu {
                display: flex;
            }
        }
        
        main {
            padding-top: 100px;
        }

        section {
            padding: 60px 0;
        }

        .hero {
            position: relative;
            height: 80vh;
            display: flex;
            justify-content: center;
            align-items: center;
            text-align: center;
            color: white;
            background-image: url('../img/08.webp');
            background-size: cover;
            background-position: center;
            animation: fadeIn 2s ease-in-out;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
        }

        .hero-content {
            position: relative;
            z-index: 2;
            animation: slideInUp 1s ease-out;
        }

        .hero h1 {
            font-size: 4rem;
            color: white;
        }

        .hero p {
            font-size: 1.5rem;
            margin-bottom: 2rem;
        }

        .about, .products, .prices, .gallery, .feedback, .faq {
            background-color: white;
            margin-bottom: 20px;
            border-radius: 10px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 1s ease-out, transform 1s ease-out;
        }
        .about.visible, .products.visible, .prices.visible, .gallery.visible, .feedback.visible, .faq.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .about h2, .products h2, .prices h2, .gallery h2, .feedback h2, .faq h2 {
            text-align: center;
            margin-bottom: 3rem;
        }

        .product-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .product-item {
            text-align: center;
            padding: 20px;
            background-color: var(--bg-color);
            border-radius: 10px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }
        
        .product-item img {
            max-width: 100%;
            height: auto;
            border-radius: 8px;
            margin-bottom: 15px;
        }

        .price-card {
            text-align: center;
            padding: 40px 20px;
            border: 2px solid var(--secondary-color);
            border-radius: 10px;
            transition: transform 0.3s ease;
        }

        .price-card:hover {
            transform: translateY(-10px);
        }

        .price-card h3 {
            color: var(--accent-color);
        }

        .price-card .price {
            font-size: 3rem;
            font-weight: bold;
            color: var(--primary-color);
            margin: 20px 0;
        }

        .price-card ul {
            text-align: left;
            margin-bottom: 20px;
        }
        
        .price-card li {
            margin-bottom: 10px;
            position: relative;
            padding-left: 20px;
        }

        .price-card li::before {
            content: '✓';
            color: var(--accent-color);
            position: absolute;
            left: 0;
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 15px;
        }

        .gallery-grid img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 8px;
            transition: transform 0.3s ease;
        }
        
        .gallery-grid img:hover {
            transform: scale(1.05);
        }

        .feedback-slider {
            position: relative;
            overflow: hidden;
        }

        .slider-wrapper {
            display: flex;
            transition: transform 0.5s ease-in-out;
        }

        .feedback-item {
            min-width: 100%;
            text-align: center;
            padding: 20px;
            background-color: var(--bg-color);
            border-radius: 10px;
            margin: 0 10px;
        }
        
        .slider-controls {
            text-align: center;
            margin-top: 20px;
        }
        
        .slider-controls button {
            background-color: var(--secondary-color);
            color: white;
            border: none;
            padding: 10px;
            cursor: pointer;
            border-radius: 5px;
            transition: background-color 0.3s ease;
        }
        
        .slider-controls button:hover {
            background-color: var(--primary-color);
        }

        .faq-item {
            background-color: var(--bg-color);
            padding: 20px;
            margin-bottom: 10px;
            border-radius: 8px;
            cursor: pointer;
        }

        .faq-question {
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: bold;
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease-out;
            padding-top: 0;
        }
        
        .faq-item.active .faq-answer {
            max-height: 200px;
            padding-top: 15px;
        }

        .contact-form {
            background-color: var(--bg-color);
            padding: 40px;
            border-radius: 10px;
        }

        .contact-form form {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .contact-form label {
            font-weight: bold;
        }

        .contact-form input {
            padding: 10px;
            border: 1px solid #ccc;
            border-radius: 5px;
        }
        
        .contact-form input:focus {
            outline: none;
            border-color: var(--accent-color);
        }
        
        .disclaimer {
            text-align: center;
            font-size: 0.8rem;
            color: #777;
            padding: 20px;
            background-color: #f0f0f0;
            border-top: 1px solid #ddd;
        }
        
        footer {
            background-color: var(--primary-color);
            color: white;
            padding: 40px 0;
            text-align: center;
        }

        footer .container {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .footer-links a, .footer-contacts p {
            color: white;
            margin: 0 10px;
            transition: color 0.3s ease;
        }
        
        .footer-links a:hover {
            color: var(--accent-color);
        }

        .cookie-banner {
            position: fixed;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            background-color: rgba(0, 0, 0, 0.8);
            color: white;
            padding: 15px 30px;
            border-radius: 10px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 20px;
            z-index: 1000;
            animation: slideInUp 0.5s ease-out;
        }

        .cookie-banner a {
            color: var(--accent-color);
            text-decoration: underline;
        }

        .cookie-banner button {
            background-color: var(--accent-color);
            color: white;
            border: none;
            padding: 8px 15px;
            border-radius: 5px;
            cursor: pointer;
        }

        .cookie-banner.hidden {
            display: none;
        }

        .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: opacity 0.3s ease, visibility 0.3s ease;
        }

        .popup.active {
            opacity: 1;
            visibility: visible;
        }

        .popup-content {
            background-color: white;
            padding: 40px;
            border-radius: 10px;
            text-align: center;
            position: relative;
            animation: scaleIn 0.3s ease-out;
        }

        .popup-close {
            position: absolute;
            top: 10px;
            right: 10px;
            font-size: 2rem;
            cursor: pointer;
            color: #777;
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        @keyframes slideInUp {
            from { transform: translateY(50px); opacity: 0; }
            to { transform: translateY(0); opacity: 1; }
        }
        
        @keyframes scaleIn {
            from { transform: scale(0.8); }
            to { transform: scale(1); }
        }

