:root {
            --primary-color: #f72585;
            --secondary-color: #b5179e;
            --dark-color: #1a1a1a;
            --light-color: #f0f0f0;
            --text-color: #e0e0e0;
            --font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: var(--font-family);
            background-color: var(--dark-color);
            color: var(--text-color);
            line-height: 1.6;
            overflow-x: hidden;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background: rgba(26, 26, 26, 0.9);
            z-index: 1000;
            padding: 1rem 0;
            transition: all 0.3s ease;
        }

        header .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        header h1 a {
            color: var(--primary-color);
            text-decoration: none;
            font-size: 1.8rem;
            font-weight: bold;
        }

        .main-nav ul {
            display: flex;
            list-style: none;
        }

        .main-nav ul li {
            margin-left: 20px;
        }

        .main-nav ul a {
            color: var(--text-color);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s ease;
        }

        .main-nav ul a:hover {
            color: var(--primary-color);
        }

        .burger-menu {
            display: none;
            flex-direction: column;
            cursor: pointer;
        }

        .burger-menu div {
            width: 25px;
            height: 3px;
            background-color: var(--text-color);
            margin: 4px;
            transition: all 0.3s ease;
        }
        
        .hero {
            position: relative;
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: var(--light-color);
            background: url('../img/03.webp') no-repeat center center/cover;
        }

        .hero::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.6);
        }

        .hero-content {
            position: relative;
            z-index: 10;
            animation: fadeIn 2s ease-in-out;
        }
        
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        .hero-content h2 {
            font-size: 3rem;
            margin-bottom: 1rem;
            text-transform: uppercase;
        }

        .hero-content p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .btn {
            display: inline-block;
            background: var(--primary-color);
            color: var(--light-color);
            padding: 12px 25px;
            text-decoration: none;
            border-radius: 5px;
            font-weight: bold;
            transition: background-color 0.3s ease;
        }

        .btn:hover {
            background: var(--secondary-color);
        }
        
        section {
            padding: 80px 0;
        }
        
        .section-title {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 40px;
            color: var(--primary-color);
            text-transform: uppercase;
        }

        .about .container, .products .container {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 40px;
        }

        .about-text, .product-text {
            flex: 1;
            min-width: 300px;
        }

        .about-image, .product-image {
            flex: 1;
            min-width: 300px;
        }

        .about-image img, .product-image img {
            width: 100%;
            border-radius: 10px;
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.6s ease-out;
        }

        .prices-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            text-align: center;
        }
        
        .price-card {
            background: #2a2a2a;
            padding: 30px;
            border-radius: 10px;
            border: 2px solid var(--secondary-color);
            transform: scale(1);
            transition: transform 0.3s ease, border-color 0.3s ease;
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.6s ease-out;
        }

        .price-card:hover {
            transform: scale(1.05);
            border-color: var(--primary-color);
        }

        .price-card h3 {
            font-size: 1.8rem;
            color: var(--primary-color);
            margin-bottom: 10px;
        }

        .price-card .price {
            font-size: 2.5rem;
            font-weight: bold;
            margin-bottom: 20px;
            color: var(--text-color);
        }

        .price-card .price span {
            font-size: 1rem;
            color: #ccc;
        }
        
        .price-card ul {
            list-style: none;
            margin-bottom: 20px;
        }

        .price-card ul li {
            margin-bottom: 10px;
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 15px;
        }

        .gallery-item {
            overflow: hidden;
            border-radius: 8px;
            opacity: 0;
            transform: scale(0.9);
            transition: all 0.6s ease-out;
        }

        .gallery-item img {
            width: 100%;
            display: block;
            transition: transform 0.3s ease;
        }

        .gallery-item img:hover {
            transform: scale(1.1);
        }
        
        .feedback-slider {
            position: relative;
            overflow: hidden;
            max-width: 800px;
            margin: 0 auto;
        }

        .slides-container {
            display: flex;
            transition: transform 0.5s ease;
        }

        .slide {
            min-width: 100%;
            text-align: center;
            padding: 40px;
            background: #2a2a2a;
            border-radius: 10px;
            position: relative;
        }

        .slide::before {
            content: '“';
            position: absolute;
            top: 10px;
            left: 20px;
            font-size: 5rem;
            color: rgba(255, 255, 255, 0.1);
        }
        
        .slide-author {
            margin-top: 15px;
            font-weight: bold;
            color: var(--primary-color);
        }
        
        .faq-item {
            background: #2a2a2a;
            margin-bottom: 15px;
            border-radius: 8px;
            overflow: hidden;
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.6s ease-out;
        }

        .faq-question {
            padding: 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            font-weight: bold;
            color: var(--primary-color);
        }

        .faq-answer {
            padding: 0 20px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease-out, padding 0.3s ease-out;
        }

        .faq-answer p {
            padding-bottom: 20px;
        }
        
        .contact-form {
            background: #2a2a2a;
            padding: 40px;
            border-radius: 10px;
            max-width: 600px;
            margin: 0 auto;
        }

        .contact-form label {
            display: block;
            margin-bottom: 8px;
        }

        .contact-form input {
            width: 100%;
            padding: 12px;
            margin-bottom: 20px;
            border: 1px solid #444;
            background: #333;
            color: var(--light-color);
            border-radius: 5px;
        }

        .contact-form .btn {
            width: 100%;
            cursor: pointer;
            border: none;
        }

        .disclaimer {
            padding: 20px;
            background: #111;
            text-align: center;
            font-size: 0.9rem;
            color: #999;
        }

        .cookie-banner {
            position: fixed;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            background: #2a2a2a;
            color: var(--text-color);
            padding: 15px 25px;
            border-radius: 8px;
            box-shadow: 0 4px 8px rgba(0,0,0,0.2);
            display: flex;
            align-items: center;
            gap: 20px;
            z-index: 2000;
        }
        
        .cookie-banner a {
            color: var(--primary-color);
            text-decoration: underline;
        }

        .cookie-banner button {
            background: var(--primary-color);
            color: var(--light-color);
            border: none;
            padding: 8px 15px;
            border-radius: 5px;
            cursor: pointer;
        }
        
        .popup {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.8);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 3000;
            visibility: hidden;
            opacity: 0;
            transition: visibility 0s, opacity 0.3s;
        }
        
        .popup.show {
            visibility: visible;
            opacity: 1;
        }

        .popup-content {
            background: var(--dark-color);
            color: var(--light-color);
            padding: 40px;
            border-radius: 10px;
            text-align: center;
            position: relative;
            border: 2px solid var(--primary-color);
        }

        .close-btn {
            position: absolute;
            top: 10px;
            right: 20px;
            font-size: 2rem;
            cursor: pointer;
            color: var(--primary-color);
        }

        footer {
            background: #1a1a1a;
            color: #ddd;
            padding: 40px 0;
            text-align: center;
        }
        
        .footer-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }

        .footer-links {
            list-style: none;
            display: flex;
            gap: 20px;
        }

        .footer-links a {
            color: #ddd;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: var(--primary-color);
        }
        
        @media (max-width: 768px) {
            .main-nav {
                display: none;
            }

            .main-nav.active {
                display: flex;
                flex-direction: column;
                position: absolute;
                top: 80px;
                left: 0;
                width: 100%;
                background: rgba(26, 26, 26, 0.95);
                padding: 20px 0;
            }

            .main-nav.active ul {
                flex-direction: column;
                text-align: center;
            }

            .main-nav.active ul li {
                margin: 15px 0;
            }

            .burger-menu {
                display: flex;
            }
            
            .hero-content h2 {
                font-size: 2.5rem;
            }

            .footer-content {
                flex-direction: column;
            }
            
            .footer-links {
                margin-top: 20px;
            }
        }

