/* Стиль в духе советского конструктивизма */
        :root {
            --primary-color: #c41230; /* Красный цвет, характерный для советского дизайна */
            --secondary-color: #f2d050; /* Желтый цвет */
            --dark-color: #1a1a1a;
            --light-color: #f5f5f5;
            --text-color: #333;
            --header-height: 70px;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Arial', sans-serif;
            line-height: 1.6;
            color: var(--text-color);
            background-color: var(--light-color);
            padding-top: var(--header-height);
        }
        
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: var(--header-height);
            background-color: var(--dark-color);
            color: var(--light-color);
            z-index: 1000;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 20px;
        }
        
        .logo {
            font-size: 24px;
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: var(--primary-color);
        }
        
        nav ul {
            display: flex;
            list-style: none;
        }
        
        nav ul li {
            margin-left: 20px;
        }
        
        nav ul li a {
            color: var(--light-color);
            text-decoration: none;
            text-transform: uppercase;
            font-weight: bold;
            transition: color 0.3s;
        }
        
        nav ul li a:hover {
            color: var(--primary-color);
        }
        
        .burger-menu {
            display: none;
            cursor: pointer;
        }
        
        .burger-menu span {
            display: block;
            width: 25px;
            height: 3px;
            background-color: var(--light-color);
            margin: 5px 0;
            transition: 0.3s;
        }
        
        main {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }
        
        section {
            margin-bottom: 60px;
        }
        
        h1, h2, h3 {
            margin-bottom: 20px;
            text-transform: uppercase;
            font-weight: bold;
        }
        
        h1 {
            font-size: 36px;
            color: var(--primary-color);
        }
        
        h2 {
            font-size: 30px;
            color: var(--dark-color);
        }
        
        h3 {
            font-size: 24px;
            color: var(--secondary-color);
        }
        
        /* Hero секция */
        .hero {
            background-color: var(--dark-color);
            color: var(--light-color);
            padding: 60px 20px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('../img/18.webp') no-repeat center center;
            background-size: cover;
            opacity: 0.3;
            z-index: -1;
        }
        
        .hero-content {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .hero h1 {
            color: var(--light-color);
            font-size: 48px;
            margin-bottom: 30px;
        }
        
        .hero p {
            font-size: 20px;
            margin-bottom: 30px;
        }
        
        .btn {
            display: inline-block;
            padding: 12px 30px;
            background-color: var(--primary-color);
            color: var(--light-color);
            text-decoration: none;
            text-transform: uppercase;
            font-weight: bold;
            border: none;
            cursor: pointer;
            transition: all 0.3s;
        }
        
        .btn:hover {
            background-color: var(--secondary-color);
            color: var(--dark-color);
        }
        
        /* About секция */
        .about {
            padding: 40px 0;
        }
        
        .about-content {
            display: flex;
            align-items: center;
            gap: 40px;
        }
        
        .about-text {
            flex: 1;
        }
        
        .about-image {
            flex: 1;
        }
        
        .about-image img {
            width: 100%;
            border: 5px solid var(--primary-color);
        }
        
        /* Products секция */
        .products {
            padding: 40px 0;
            background-color: #f0f0f0;
        }
        
        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .product-card {
            background-color: white;
            padding: 20px;
            border: 2px solid var(--primary-color);
            text-align: center;
        }
        
        .product-card img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            margin-bottom: 20px;
        }
        
        /* Prices секция */
        .prices {
            padding: 40px 0;
        }
        
        .prices-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }
        
        .price-card {
            background-color: white;
            border: 2px solid var(--primary-color);
            padding: 20px;
            text-align: center;
            position: relative;
        }
        
        .price-card.featured {
            border-width: 3px;
            transform: scale(1.05);
        }
        
        .price-card.featured::before {
            content: 'POGOSTO';
            position: absolute;
            top: -15px;
            left: 50%;
            transform: translateX(-50%);
            background-color: var(--primary-color);
            color: white;
            padding: 5px 15px;
            font-weight: bold;
        }
        
        .price {
            font-size: 36px;
            color: var(--primary-color);
            margin: 15px 0;
        }
        
        /* Gallery секция */
        .gallery {
            padding: 40px 0;
            background-color: #f0f0f0;
        }
        
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 15px;
        }
        
        .gallery-item {
            position: relative;
            overflow: hidden;
            height: 200px;
        }
        
        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }
        
        .gallery-item:hover img {
            transform: scale(1.1);
        }
        
        /* Feedback секция */
        .feedback {
            padding: 40px 0;
        }
        
        .feedback-slider {
            position: relative;
            overflow: hidden;
        }
        
        .feedback-container {
            display: flex;
            transition: transform 0.5s;
        }
        
        .feedback-item {
            min-width: 100%;
            padding: 20px;
            background-color: white;
            border: 2px solid var(--primary-color);
        }
        
        .feedback-text {
            font-style: italic;
            margin-bottom: 20px;
        }
        
        .feedback-author {
            font-weight: bold;
            color: var(--primary-color);
        }
        
        .feedback-nav {
            text-align: center;
            margin-top: 20px;
        }
        
        .feedback-nav button {
            background-color: var(--primary-color);
            color: white;
            border: none;
            padding: 10px 15px;
            margin: 0 5px;
            cursor: pointer;
        }
        
        /* FAQ секция */
        .faq {
            padding: 40px 0;
            background-color: #f0f0f0;
        }
        
        .faq-item {
            margin-bottom: 20px;
            border: 1px solid #ddd;
        }
        
        .faq-question {
            background-color: var(--dark-color);
            color: white;
            padding: 15px;
            cursor: pointer;
            font-weight: bold;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .faq-question::after {
            content: '+';
            font-size: 24px;
        }
        
        .faq-question.active::after {
            content: '-';
        }
        
        .faq-answer {
            padding: 15px;
            display: none;
        }
        
        .faq-answer.active {
            display: block;
        }
        
        /* Contact секция */
        .contact {
            padding: 40px 0;
        }
        
        .contact-form {
            max-width: 600px;
            margin: 0 auto;
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 5px;
            font-weight: bold;
        }
        
        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 10px;
            border: 2px solid var(--primary-color);
            font-family: inherit;
        }
        
        .form-group textarea {
            height: 150px;
            resize: vertical;
        }
        
        /* Footer */
        footer {
            background-color: var(--dark-color);
            color: var(--light-color);
            padding: 40px 20px;
        }
        
        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }
        
        .footer-section h3 {
            color: var(--primary-color);
            margin-bottom: 20px;
        }
        
        .footer-section ul {
            list-style: none;
        }
        
        .footer-section ul li {
            margin-bottom: 10px;
        }
        
        .footer-section ul li a {
            color: var(--light-color);
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-section ul li a:hover {
            color: var(--primary-color);
        }
        
        .footer-bottom {
            text-align: center;
            margin-top: 30px;
            padding-top: 20px;
            border-top: 1px solid #444;
        }
        
        /* Disclaimer */
        .disclaimer {
            background-color: #f8f8f8;
            border: 1px solid #ddd;
            padding: 20px;
            margin-top: 40px;
            font-size: 14px;
            color: #666;
        }
        
        /* Cookie баннер */
        .cookie-banner {
            position: fixed;
            bottom: 20px;
            left: 20px;
            right: 20px;
            background-color: var(--dark-color);
            color: white;
            padding: 20px;
            border-radius: 5px;
            box-shadow: 0 0 10px rgba(0,0,0,0.3);
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1001;
            transform: translateY(150%);
            transition: transform 0.5s;
        }
        
        .cookie-banner.active {
            transform: translateY(0);
        }
        
        .cookie-text {
            flex: 1;
            margin-right: 20px;
        }
        
        .cookie-buttons {
            display: flex;
            gap: 10px;
        }
        
        .cookie-btn {
            padding: 8px 15px;
            border: none;
            cursor: pointer;
            font-weight: bold;
        }
        
        .cookie-accept {
            background-color: var(--primary-color);
            color: white;
        }
        
        .cookie-decline {
            background-color: transparent;
            color: white;
            border: 1px solid white;
        }
        
        /* Попап */
        .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: white;
            padding: 30px;
            border-radius: 5px;
            text-align: center;
            max-width: 500px;
            width: 90%;
            transform: scale(0.7);
            transition: transform 0.3s;
        }
        
        .popup.active .popup-content {
            transform: scale(1);
        }
        
        .popup-close {
            position: absolute;
            top: 10px;
            right: 10px;
            font-size: 24px;
            cursor: pointer;
        }
        
        /* Адаптивность */
        @media (max-width: 768px) {
            nav ul {
                display: none;
                position: absolute;
                top: var(--header-height);
                left: 0;
                width: 100%;
                background-color: var(--dark-color);
                flex-direction: column;
                padding: 20px;
            }
            
            nav ul.active {
                display: flex;
            }
            
            .burger-menu {
                display: block;
            }
            
            .about-content {
                flex-direction: column;
            }
            
            .hero h1 {
                font-size: 36px;
            }
            
            .cookie-banner {
                flex-direction: column;
                text-align: center;
            }
            
            .cookie-text {
                margin-right: 0;
                margin-bottom: 20px;
            }
        }

