:root {
            --primary-color: #0d0c1d;
            --secondary-color: #FFC107;
            --accent-color: #E91E63;
            --text-color: #f0f0f0;
            --bg-color: #2c3e50;
            --font-family-retro: 'Orbitron', sans-serif;
            --font-family-text: 'Roboto', sans-serif;
        }

        body {
            margin: 0;
            font-family: var(--font-family-text);
            background-color: var(--bg-color);
            color: var(--text-color);
            line-height: 1.6;
            overflow-x: hidden;
            scroll-behavior: smooth;
        }

        h1, h2, h3 {
            font-family: var(--font-family-retro);
            color: var(--secondary-color);
        }

        header {
            position: fixed;
            width: 100%;
            top: 0;
            left: 0;
            background: rgba(13, 12, 29, 0.95);
            padding: 1rem 0;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
            transition: background 0.3s ease;
        }

        header .logo {
            font-family: var(--font-family-retro);
            font-size: 1.8rem;
            color: var(--accent-color);
            text-transform: uppercase;
            text-decoration: none;
            letter-spacing: 2px;
        }

        nav a {
            color: var(--text-color);
            text-decoration: none;
            margin-left: 2rem;
            font-size: 1rem;
            transition: color 0.3s ease;
        }

        nav a:hover {
            color: var(--secondary-color);
        }

        .burger-menu {
            display: none;
            cursor: pointer;
            flex-direction: column;
            justify-content: space-around;
            width: 2rem;
            height: 2rem;
        }

        .burger-menu div {
            width: 2rem;
            height: 3px;
            background-color: var(--text-color);
            transition: all 0.3s linear;
        }

        .burger-menu.active .line1 { transform: rotate(45deg) translate(5px, 5px); }
        .burger-menu.active .line2 { opacity: 0; }
        .burger-menu.active .line3 { transform: rotate(-45deg) translate(5px, -5px); }

        .nav-links {
            display: flex;
        }

        main {
            padding-top: 80px;
        }

        section {
            padding: 5rem 10%;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
        }

        .hero {
            background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url("../img/06.webp") no-repeat center center/cover;
            color: var(--text-color);
            padding-top: 0;
            min-height: 100vh;
            position: relative;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: radial-gradient(circle, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
            background-size: 20px 20px;
            animation: pulse 10s infinite alternate;
        }

        @keyframes pulse {
            from { background-size: 20px 20px; }
            to { background-size: 40px 40px; }
        }

        .hero-content {
            position: relative;
            z-index: 10;
        }

        .hero h1 {
            font-size: 4rem;
            margin-bottom: 1rem;
            text-shadow: 2px 2px var(--primary-color);
            animation: fadeInDown 1s ease-out;
        }

        .hero p {
            font-size: 1.5rem;
            max-width: 700px;
            animation: fadeInUp 1.2s ease-out;
        }

        .cta-button {
            background-color: var(--accent-color);
            color: var(--text-color);
            padding: 1rem 2rem;
            border: none;
            border-radius: 5px;
            font-size: 1.2rem;
            cursor: pointer;
            transition: background-color 0.3s ease, transform 0.3s ease;
            text-decoration: none;
            display: inline-block;
            margin-top: 1rem;
        }

        .cta-button:hover {
            background-color: var(--secondary-color);
            transform: scale(1.05);
        }

        .about, .products, .prices, .gallery, .feedback, .faq {
            background-color: var(--primary-color);
            color: var(--text-color);
            position: relative;
        }

        .about {
            background-color: #2c3e50;
        }

        .products {
            background-color: #1a2533;
        }

        .prices {
            background-color: #2c3e50;
        }

        .gallery {
            background-color: #1a2533;
        }

        .feedback {
            background-color: #2c3e50;
        }

        .faq {
            background-color: #1a2533;
        }

        h2 {
            font-size: 3rem;
            margin-bottom: 2rem;
            border-bottom: 3px solid var(--accent-color);
            padding-bottom: 0.5rem;
            animation: fadeIn 1s ease-out;
        }

        .text-content {
            width: 100%;
            text-align: left;
        }

        .product-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
           
            margin-top: 2rem;
        }

        .product-card {
            background-color: #0d0c1d;
            padding: 2rem;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            transition: transform 0.3s ease;
            text-align: center;
        }

        .product-card:hover {
            transform: translateY(-10px);
        }

        .product-card img {
            max-width: 100%;
            border-radius: 5px;
            margin-bottom: 1rem;
        }

        .price-list {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 2rem;
            margin-top: 2rem;
        }

        .price-card {
            background-color: #0d0c1d;
            padding: 2rem;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            text-align: center;
            min-width: 300px;
            position: relative;
            overflow: hidden;
        }

        .price-card::before {
            content: '';
            position: absolute;
            top: -20px;
            left: -20px;
            width: 100px;
            height: 100px;
            background-color: var(--secondary-color);
            transform: rotate(45deg);
        }

        .price-card h3 {
            font-size: 2rem;
            color: var(--accent-color);
            margin-bottom: 1rem;
            z-index: 10;
        }

        .price-card .price {
            font-size: 3rem;
            font-family: var(--font-family-retro);
            color: var(--secondary-color);
            margin-bottom: 1rem;
        }

        .price-card ul {
            list-style: none;
            padding: 0;
            text-align: left;
            margin-bottom: 2rem;
        }

        .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;
        }

        .gallery-item img {
            width: 100%;
            height: auto;
            border-radius: 5px;
            display: block;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .gallery-item img:hover {
            transform: scale(1.05);
        }

        .feedback-slider-container {
            position: relative;
            width: 100%;
            max-width: 800px;
            overflow: hidden;
            margin: 2rem auto;
        }

        .feedback-slider {
            display: flex;
            transition: transform 0.5s ease-in-out;
        }

        .feedback-slide {
            min-width: 100%;
            box-sizing: border-box;
            padding: 2rem;
            text-align: center;
            background-color: #0d0c1d;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .feedback-slide blockquote {
            font-style: italic;
            margin: 1rem 0;
            font-size: 1.2rem;
        }

        .feedback-slide .author {
            font-weight: bold;
            color: var(--secondary-color);
            margin-top: 0.5rem;
        }

        .slider-nav {
            margin-top: 1rem;
        }

        .slider-nav button {
            background-color: var(--accent-color);
            color: var(--text-color);
            border: none;
            padding: 0.5rem 1rem;
            cursor: pointer;
            margin: 0 0.5rem;
            border-radius: 5px;
            transition: background-color 0.3s ease;
        }

        .slider-nav button:hover {
            background-color: var(--secondary-color);
        }

        .faq-item {
            max-width: 800px;
            margin: 1rem auto;
            border-bottom: 1px solid var(--accent-color);
            text-align: left;
        }

        .faq-question {
            cursor: pointer;
            padding: 1rem;
            position: relative;
            display: block;
            color: var(--secondary-color);
            font-weight: bold;
        }

        .faq-question::after {
            content: '+';
            position: absolute;
            right: 1rem;
            top: 50%;
            transform: translateY(-50%);
            font-size: 1.5rem;
            transition: transform 0.3s ease;
        }

        .faq-question.active::after {
            transform: translateY(-50%) rotate(45deg);
        }

        .faq-answer {
            padding: 0 1rem 1rem;
            display: none;
        }

        .contact-form {
            max-width: 600px;
            background-color: #0d0c1d;
            padding: 2rem;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            margin-top: 2rem;
            
        }
        .feedback-slider-container.animated-element.visible{
            width: 100%;
        }

        .contact-form h3 {
            text-align: center;
        }

        .form-group {
            margin-bottom: 1rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            color: var(--secondary-color);
        }

        .form-group input, .form-group textarea {
            width: 100%;
            padding: 0.75rem;
            box-sizing: border-box;
            border: 1px solid var(--accent-color);
            background-color: transparent;
            color: var(--text-color);
            border-radius: 5px;
        }

        .form-group button {
            width: 100%;
            background-color: var(--accent-color);
            color: var(--text-color);
            padding: 0.75rem;
            border: none;
            border-radius: 5px;
            font-size: 1rem;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }

        .form-group button:hover {
            background-color: var(--secondary-color);
        }

        .popup {
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%) scale(0.8);
            background-color: #0d0c1d;
            color: var(--text-color);
            padding: 2rem;
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
            z-index: 2000;
            display: none;
            opacity: 0;
            transition: all 0.3s ease;
        }

        .popup.show {
            display: block;
            opacity: 1;
            transform: translate(-50%, -50%) scale(1);
        }

        .popup-close {
            position: absolute;
            top: 10px;
            right: 10px;
            font-size: 1.5rem;
            color: var(--secondary-color);
            cursor: pointer;
        }

        footer {
            background-color: var(--primary-color);
            color: var(--text-color);
            padding: 2rem 10%;
            text-align: center;
            border-top: 1px solid var(--accent-color);
        }

        footer .footer-links a {
            color: var(--text-color);
            text-decoration: none;
            margin: 0 1rem;
            transition: color 0.3s ease;
        }

        footer .footer-links a:hover {
            color: var(--secondary-color);
        }

        .disclaimer {
            background-color: #1a2533;
            color: #999;
            padding: 1rem 10%;
            font-size: 0.8rem;
            text-align: center;
        }

        .cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background-color: rgba(13, 12, 29, 0.95);
            color: var(--text-color);
            padding: 1rem;
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 1000;
            box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
            transform: translateY(100%);
            transition: transform 0.5s ease-in-out;
        }

        .cookie-banner.show {
            transform: translateY(0);
        }

        .cookie-banner a {
            color: var(--secondary-color);
            text-decoration: underline;
        }

        .cookie-banner button {
            background-color: var(--accent-color);
            color: var(--text-color);
            border: none;
            padding: 0.5rem 1rem;
            margin-left: 1rem;
            cursor: pointer;
            border-radius: 5px;
        }
        
        .animated-element {
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.6s ease-out, transform 0.6s ease-out;
        }

        .animated-element.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Адаптивный дизайн */
        @media (max-width: 768px) {
            .nav-links {
                position: fixed;
                right: 0;
                top: 80px;
                background-color: var(--primary-color);
                width: 70%;
                height: 100vh;
                flex-direction: column;
                transform: translateX(100%);
                transition: transform 0.5s ease-in;
                text-align: center;
                padding-top: 5rem;
            }

            .nav-links a {
                margin: 2rem 0;
                font-size: 1.5rem;
            }

            .nav-links.active {
                transform: translateX(0);
            }

            .burger-menu {
                display: flex;
            }

            .hero h1 {
                font-size: 2.5rem;
            }

            .hero p {
                font-size: 1.2rem;
            }

            section {
                padding: 3rem 5%;
            }

            h2 {
                font-size: 2rem;
            }

            .footer-links {
                display: flex;
                flex-direction: column;
                gap: 0.5rem;
            }
        }

