:root {
            --color-primary: #4A2C85;
            --color-secondary: #00BCD4;
            --color-accent: #FFEB3B;
            --color-background: #2A1E4D;
            --color-text: #F5F5F5;
            --font-family-header: 'Orbitron', sans-serif;
            --font-family-body: 'Roboto', sans-serif;
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            scroll-behavior: smooth;
        }

        body {
            font-family: var(--font-family-body);
            background-color: var(--color-background);
            color: var(--color-text);
            line-height: 1.6;
        }

        h1, h2, h3 {
            font-family: var(--font-family-header);
            text-transform: uppercase;
        }

        h1 { font-size: 3rem; }
        h2 { font-size: 2.5rem; }
        h3 { font-size: 1.8rem; }

        a {
            color: var(--color-secondary);
            text-decoration: none;
            transition: color 0.3s ease;
        }
        a:hover { color: var(--color-accent); }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .btn {
            display: inline-block;
            padding: 12px 24px;
            background-color: var(--color-secondary);
            color: var(--color-background);
            font-family: var(--font-family-header);
            text-transform: uppercase;
            border-radius: 5px;
            border: none;
            cursor: pointer;
            transition: background-color 0.3s ease, transform 0.3s ease;
        }
        .btn:hover {
            background-color: var(--color-accent);
            transform: scale(1.05);
        }

        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: rgba(42, 30, 77, 0.95);
            backdrop-filter: blur(5px);
            z-index: 100;
            padding: 1rem 0;
            border-bottom: 2px solid var(--color-primary);
        }

        header .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-family: var(--font-family-header);
            font-size: 2rem;
            color: var(--color-accent);
            text-shadow: 2px 2px var(--color-secondary);
        }
        .logo span { color: var(--color-secondary); }

        .nav-menu {
            display: flex;
            list-style: none;
        }
        .nav-menu li { margin-left: 25px; }
        .nav-menu a {
            font-family: var(--font-family-header);
            color: var(--color-text);
            position: relative;
        }
        .nav-menu a::after {
            content: '';
            display: block;
            width: 0;
            height: 2px;
            background: var(--color-accent);
            position: absolute;
            bottom: -5px;
            left: 0;
            transition: width 0.3s ease;
        }
        .nav-menu a:hover::after { width: 100%; }

        .burger-menu {
            display: none;
            flex-direction: column;
            cursor: pointer;
        }
        .burger-menu .bar {
            width: 25px;
            height: 3px;
            background-color: var(--color-text);
            margin: 4px 0;
            transition: all 0.3s ease;
        }

        main {
            padding-top: 80px;
        }

        section {
            padding: 80px 0;
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.6s ease-out, transform 0.6s ease-out;
        }
        section.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .hero {
            position: relative;
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            background-image: url('../img/02.webp');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            color: var(--color-text);
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
            overflow: hidden;
        }
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(42, 30, 77, 0.7);
        }
        .hero-content { z-index: 2; animation: fadeIn 1s forwards; }
        .hero h1 { font-size: 4rem; margin-bottom: 1rem; }
        .hero p { font-size: 1.5rem; margin-bottom: 2rem; }

        .about {
            background-color: var(--color-primary);
            text-align: center;
        }
        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: center;
            margin-top: 40px;
        }
        .about-text h2 { margin-bottom: 20px; }
        .about-image img {
            width: 100%;
            border-radius: 10px;
            box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
        }

        .products {
            background-color: var(--color-background);
            text-align: center;
        }
        .products h2 { margin-bottom: 40px; }
        .product-card {
            background-color: var(--color-primary);
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
            transition: transform 0.3s ease;
        }
        .product-card:hover { transform: translateY(-10px); }
        .product-card img { width: 100%; border-radius: 8px; margin-bottom: 15px; }
        .product-card h3 { color: var(--color-accent); margin-bottom: 10px; }

        .prices {
            background-color: var(--color-primary);
            text-align: center;
        }
        .prices h2 { margin-bottom: 40px; }
        .price-grid {
            display: flex;
            justify-content: center;
            gap: 30px;
            flex-wrap: wrap;
        }
        .price-card {
            background-color: var(--color-background);
            border: 2px solid var(--color-secondary);
            border-radius: 10px;
            padding: 40px;
            max-width: 350px;
            text-align: center;
            transition: all 0.3s ease;
        }
        .price-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
            border-color: var(--color-accent);
        }
        .price-card h3 { color: var(--color-accent); margin-bottom: 10px; }
        .price-card .price {
            font-size: 3rem;
            font-family: var(--font-family-header);
            margin-bottom: 10px;
            color: var(--color-secondary);
        }
        .price-card ul {
            list-style: none;
            text-align: left;
            margin: 20px 0;
        }
        .price-card ul li {
            padding: 8px 0;
            border-bottom: 1px solid rgba(245, 245, 245, 0.1);
        }

        .gallery {
            text-align: center;
            padding: 80px 0;
            background-color: var(--color-background);
        }
        .gallery h2 { margin-bottom: 40px; }
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
        }
        .gallery-item img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            border-radius: 8px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .gallery-item img:hover {
            transform: scale(1.05);
            box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
        }
        
        .feedback {
            background-color: var(--color-primary);
            overflow: hidden;
            text-align: center;
        }
        .feedback h2 { margin-bottom: 40px; }
        .slider-container {
            position: relative;
            width: 100%;
            padding: 0 50px;
        }
        .slider-wrapper {
            display: flex;
            overflow: hidden;
            gap: 20px;
            scroll-behavior: smooth;
        }
        .review-card {
            flex: 0 0 calc(50% - 10px);
            max-width: calc(50% - 10px);
            background-color: var(--color-background);
            padding: 25px;
            border-radius: 10px;
            min-height: 200px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        .review-card p { font-style: italic; margin-bottom: 15px; }
        .review-card .author { font-weight: bold; color: var(--color-accent); }
        .slider-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 100%;
            display: flex;
            justify-content: space-between;
            pointer-events: none;
        }
        .slider-nav button {
            background-color: rgba(0, 0, 0, 0.5);
            border: none;
            color: var(--color-text);
            font-size: 2rem;
            padding: 10px;
            cursor: pointer;
            border-radius: 50%;
            pointer-events: all;
        }

        .faq {
            background-color: var(--color-background);
            text-align: center;
        }
        .faq h2 { margin-bottom: 40px; }
        .faq-item {
            border-bottom: 1px solid var(--color-primary);
            padding: 20px 0;
            text-align: left;
        }
        .faq-question {
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            font-weight: bold;
            font-family: var(--font-family-header);
        }
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease-out;
            padding-top: 10px;
        }
        .faq-answer p { margin-top: 10px; }

        .contact-form-section {
            background-color: var(--color-primary);
            text-align: center;
        }
        .contact-form-section h2 { margin-bottom: 40px; }
        .contact-form {
            max-width: 600px;
            margin: 0 auto;
            background-color: var(--color-background);
            padding: 40px;
            border-radius: 10px;
            box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
        }
        .form-group { margin-bottom: 20px; text-align: left; }
        .form-group label { display: block; margin-bottom: 8px; color: var(--color-secondary); }
        .form-group input {
            width: 100%;
            padding: 12px;
            border-radius: 5px;
            border: 1px solid var(--color-primary);
            background-color: #3A2E63;
            color: var(--color-text);
        }
        .form-group input::placeholder { color: rgba(245, 245, 245, 0.5); }
        .contact-form button { width: 100%; }

        .disclaimer {
            text-align: center;
            font-size: 0.8rem;
            padding: 20px 0;
            border-top: 1px solid var(--color-primary);
            background-color: var(--color-background);
            color: rgba(245, 245, 245, 0.6);
        }

        footer {
            background-color: #1A152E;
            padding: 40px 0;
            color: rgba(245, 245, 245, 0.8);
        }
        footer .container {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: flex-start;
        }
        .footer-logo { font-size: 2rem; color: var(--color-accent); margin-bottom: 10px; }
        .footer-section {
            flex: 1;
            min-width: 250px;
            margin: 20px 0;
        }
        .footer-section h3 { margin-bottom: 15px; color: var(--color-secondary); }
        .footer-section ul { list-style: none; }
        .footer-section a { color: rgba(245, 245, 245, 0.8); }

        .cookie-banner {
            position: fixed;
            bottom: 20px;
            left: 20px;
            right: 20px;
            background-color: rgba(0, 0, 0, 0.85);
            padding: 20px;
            border-radius: 10px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
            display: none;
        }
        .cookie-banner p { margin: 0; font-size: 0.9rem; }
        .cookie-banner .btn { margin-left: 20px; }

        .popup {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.7);
            display: none;
            justify-content: center;
            align-items: center;
            z-index: 1001;
        }
        .popup-content {
            background-color: var(--color-primary);
            padding: 40px;
            border-radius: 10px;
            text-align: center;
            position: relative;
            animation: fadeIn 0.5s forwards;
            max-width: 400px;
        }
        .popup-content h3 { color: var(--color-accent); }
        .popup-close {
            position: absolute;
            top: 10px;
            right: 20px;
            font-size: 2rem;
            cursor: pointer;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            h1 { font-size: 2.5rem; }
            h2 { font-size: 2rem; }
            h3 { font-size: 1.5rem; }
            .nav-menu {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 80px;
                left: 0;
                width: 100%;
                background-color: rgba(42, 30, 77, 0.95);
                padding: 20px;
                text-align: center;
            }
            .nav-menu.active { display: flex; }
            .nav-menu li { margin: 10px 0; }
            .burger-menu { display: flex; }
            .hero { height: auto; padding: 150px 20px 80px; }
            .hero-content { padding: 0 20px; }
            .about-grid { grid-template-columns: 1fr; }
            .about-image { margin-top: 30px; }
            .price-grid { flex-direction: column; align-items: center; }
            .review-card { flex: 0 0 100%; max-width: 100%; }
            .slider-container { padding: 0 10px; }
            .slider-nav button { font-size: 1.5rem; }
            footer .container { flex-direction: column; }
        }

