:root {
            --bg-color: #0d0d1e;
            --text-color: #f0f0f0;
            --accent-pink: #ff69b4;
            --accent-blue: #4d4dff;
            --accent-purple: #8a2be2;
            --font-family-retro: 'Courier New', monospace;
            --header-height: 80px;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background-color: var(--bg-color);
            color: var(--text-color);
            font-family: var(--font-family-retro);
            line-height: 1.6;
            overflow-x: hidden;
        }
        header {
            background-color: rgba(13, 13, 30, 0.9);
            position: fixed;
            width: 100%;
            top: 0;
            left: 0;
            z-index: 100;
            padding: 0 5%;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
            height: var(--header-height);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 2em;
            font-weight: bold;
            color: var(--accent-blue);
            text-shadow: 0 0 10px var(--accent-blue);
            text-decoration: none;
            transition: color 0.3s;
        }
        .logo:hover {
            color: var(--accent-pink);
        }
        nav ul {
            list-style: none;
            display: flex;
        }
        nav ul li {
            margin-left: 25px;
        }
        nav ul a {
            color: var(--text-color);
            text-decoration: none;
            font-weight: bold;
            font-size: 1.1em;
            text-transform: uppercase;
            letter-spacing: 1px;
            position: relative;
            transition: color 0.3s;
        }
        nav ul a::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: -5px;
            width: 0;
            height: 2px;
            background-color: var(--accent-pink);
            transition: width 0.3s;
        }
        nav ul a:hover {
            color: var(--accent-pink);
        }
        nav ul a:hover::after {
            width: 100%;
        }
        .burger {
            display: none;
            cursor: pointer;
            flex-direction: column;
            justify-content: space-around;
            width: 30px;
            height: 25px;
        }
        .burger div {
            width: 30px;
            height: 3px;
            background-color: var(--text-color);
            transition: all 0.3s linear;
        }
        section {
            padding: 80px 5%;
            padding-top: calc(80px + var(--header-height));
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        h1, h2, h3 {
            text-shadow: 0 0 15px rgba(255, 105, 180, 0.5);
            margin-bottom: 20px;
        }
        h1 {
            font-size: 3em;
            color: var(--accent-pink);
        }
        h2 {
            font-size: 2.5em;
            color: var(--accent-blue);
            text-align: center;
            margin-top: 20px;
            margin-bottom: 40px;
        }
        h3 {
            font-size: 1.8em;
            color: var(--accent-purple);
        }
        p {
            max-width: 800px;
            margin: 0 auto 20px;
            text-align: justify;
        }
        .hero {
            background: url("../img/02.webp") no-repeat center center/cover;
            background-attachment: fixed;
            color: var(--text-color);
            text-align: center;
            min-height: 100vh;
            position: relative;
            padding-top: var(--header-height);
        }
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(138, 43, 226, 0.3);
        }
        .hero-content {
            position: relative;
            z-index: 1;
            padding-top: calc(var(--header-height) + 50px);
        }
        .hero h1 {
            font-size: 4em;
            text-transform: uppercase;
            letter-spacing: 5px;
        }
        .cta-button {
            display: inline-block;
            background-color: var(--accent-pink);
            color: var(--bg-color);
            padding: 15px 30px;
            text-decoration: none;
            font-weight: bold;
            text-transform: uppercase;
            border-radius: 5px;
            margin-top: 20px;
            box-shadow: 0 0 15px var(--accent-pink);
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .cta-button:hover {
            transform: scale(1.05);
            box-shadow: 0 0 25px var(--accent-pink);
        }
        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
            margin-top: 40px;
        }
        .product-card {
            background-color: rgba(77, 77, 255, 0.1);
            padding: 30px;
            border-radius: 10px;
            text-align: center;
            border: 2px solid var(--accent-blue);
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .product-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 20px rgba(77, 77, 255, 0.3);
        }
        .product-card img {
            width: 100%;
            max-height: 200px;
            object-fit: cover;
            border-radius: 8px;
            margin-bottom: 20px;
        }
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 15px;
            margin-top: 40px;
        }
        .gallery-grid img {
            width: 100%;
            height: auto;
            border-radius: 8px;
            transition: transform 0.3s;
        }
        .gallery-grid img:hover {
            transform: scale(1.05);
        }
        .feedback-slider-container {
            position: relative;
            width: 100%;
            overflow: hidden;
        }
        .feedback-slider {
            display: flex;
            transition: transform 0.5s ease-in-out;
            width: 100%;
        }
        .feedback-item {
            min-width: 100%;
            box-sizing: border-box;
            padding: 20px;
            text-align: center;
            background-color: rgba(255, 105, 180, 0.1);
            border-radius: 10px;
            border: 1px solid var(--accent-pink);
            margin-right: 20px;
        }
        .feedback-item p {
            font-style: italic;
        }
        .feedback-item span {
            display: block;
            margin-top: 10px;
            font-weight: bold;
            color: var(--accent-pink);
        }
        .slider-nav {
            text-align: center;
            margin-top: 20px;
        }
        .slider-nav-button {
            background-color: var(--accent-blue);
            color: var(--text-color);
            border: none;
            padding: 10px 15px;
            margin: 0 5px;
            cursor: pointer;
            border-radius: 50%;
            font-size: 1em;
            transition: background-color 0.3s;
        }
        .slider-nav-button:hover {
            background-color: var(--accent-pink);
        }
        .faq-item {
            margin-bottom: 20px;
        }
        .faq-item h3 {
            cursor: pointer;
            position: relative;
            padding-left: 30px;
        }
        .faq-item h3::before {
            content: '+';
            position: absolute;
            left: 0;
            color: var(--accent-pink);
            font-size: 1.5em;
            top: -5px;
            transition: transform 0.3s;
        }
        .faq-item.active h3::before {
            content: '-';
        }
        .faq-content {
            display: none;
            padding-left: 30px;
            margin-top: 10px;
            border-left: 2px solid var(--accent-purple);
        }
        .faq-item.active .faq-content {
            display: block;
            animation: fadeIn 0.5s ease-in-out;
        }
        .contact-form {
            max-width: 600px;
            margin: 40px auto;
            background-color: rgba(255, 105, 180, 0.1);
            padding: 40px;
            border-radius: 10px;
            border: 2px solid var(--accent-pink);
        }
        .contact-form form {
            display: flex;
            flex-direction: column;
        }
        .contact-form label {
            margin-top: 15px;
            font-weight: bold;
            color: var(--accent-purple);
        }
        .contact-form input {
            padding: 10px;
            margin-top: 5px;
            border: 2px solid var(--accent-blue);
            background-color: transparent;
            color: var(--text-color);
            border-radius: 5px;
            font-family: var(--font-family-retro);
        }
        .contact-form button {
            background-color: var(--accent-pink);
            color: var(--bg-color);
            padding: 15px;
            border: none;
            cursor: pointer;
            margin-top: 20px;
            font-weight: bold;
            text-transform: uppercase;
            transition: background-color 0.3s;
        }
        .contact-form button:hover {
            background-color: var(--accent-blue);
        }
        .disclaimer {
            text-align: center;
            font-size: 0.8em;
            color: #aaa;
            padding: 20px 5%;
            background-color: rgba(13, 13, 30, 0.5);
            border-top: 1px solid #333;
        }
        footer {
            background-color: var(--bg-color);
            padding: 40px 5%;
            border-top: 2px solid var(--accent-blue);
            text-align: center;
        }
        footer .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: flex-start;
            text-align: left;
        }
        footer h3 {
            margin-bottom: 20px;
            text-align: center;
            width: 100%;
        }
        .footer-links, .footer-contact {
            flex: 1;
            min-width: 250px;
            margin-bottom: 20px;
        }
        .footer-links ul {
            list-style: none;
            padding: 0;
            text-align: center;
        }
        .footer-links a, .footer-contact p {
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s;
        }
        .footer-links a:hover {
            color: var(--accent-pink);
        }
        .footer-contact p {
            margin-bottom: 10px;
        }
        .copyright {
            margin-top: 20px;
            color: #888;
            font-size: 0.9em;
            width: 100%;
        }
        .cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background-color: rgba(138, 43, 226, 0.95);
            color: var(--text-color);
            padding: 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 15px;
            box-shadow: 0 0 15px rgba(138, 43, 226, 0.5);
            z-index: 1000;
        }
        .cookie-banner p {
            margin: 0;
            flex-grow: 1;
            max-width: 70%;
        }
        .cookie-banner a {
            color: var(--accent-pink);
            text-decoration: underline;
        }
        .cookie-banner-buttons {
            display: flex;
            gap: 10px;
        }
        .cookie-banner button {
            background-color: var(--accent-pink);
            color: var(--bg-color);
            border: none;
            padding: 10px 20px;
            cursor: pointer;
            font-weight: bold;
            transition: background-color 0.3s;
        }
        .cookie-banner button:hover {
            background-color: var(--accent-blue);
        }
        .popup-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.8);
            display: none;
            justify-content: center;
            align-items: center;
            z-index: 1001;
        }
        .popup-content {
            background-color: var(--bg-color);
            border: 2px solid var(--accent-pink);
            padding: 40px;
            text-align: center;
            border-radius: 10px;
            max-width: 500px;
            width: 90%;
            position: relative;
            box-shadow: 0 0 20px var(--accent-pink);
        }
        .popup-close {
            position: absolute;
            top: 10px;
            right: 20px;
            font-size: 2em;
            color: var(--accent-pink);
            cursor: pointer;
            line-height: 1;
        }
        .hidden {
            display: none;
        }
        .fade-in {
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.8s ease-out, transform 0.8s ease-out;
        }
        .visible {
            opacity: 1;
            transform: translateY(0);
        }
        @media (max-width: 768px) {
            nav ul {
                flex-direction: column;
                position: fixed;
                top: var(--header-height);
                left: 0;
                width: 100%;
                background-color: rgba(13, 13, 30, 0.95);
                padding: 20px 0;
                transform: translateY(-100%);
                transition: transform 0.5s ease-in-out;
                z-index: 99;
                text-align: center;
            }
            nav ul.nav-active {
                transform: translateY(0);
            }
            nav ul li {
                margin: 15px 0;
            }
            .burger {
                display: flex;
            }
            h1 {
                font-size: 2.5em;
            }
            h2 {
                font-size: 2em;
            }
            .hero-content {
                padding-top: calc(var(--header-height) + 20px);
            }
            .feedback-slider-container {
                overflow: visible;
            }
            .feedback-slider {
                flex-wrap: wrap;
                justify-content: center;
                gap: 20px;
                transform: none !important;
            }
            .feedback-item {
                min-width: 90%;
            }
            .slider-nav {
                display: none;
            }
            .footer-content {
                flex-direction: column;
            }
            .footer-links, .footer-contact {
                text-align: center;
            }
            .cookie-banner p {
                max-width: 100%;
                text-align: center;
            }
            .cookie-banner-buttons {
                justify-content: center;
                width: 100%;
            }
        }

