@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700&family=Rajdhani:wght@400;700&display=swap');

        :root {
            --color-primary: #331A4A;
            --color-secondary: #E35E8E;
            --color-tertiary: #A6CEE3;
            --color-accent: #F9E066;
            --color-text: #E3E3E3;
            --color-background: #1C0F2B;
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
            scroll-behavior: smooth;
        }

        html {
            font-size: 16px;
        }

        body {
            font-family: 'Rajdhani', sans-serif;
            background-color: var(--color-background);
            color: var(--color-text);
            line-height: 1.6;
            overflow-x: hidden;
            position: relative;
        }

        h1, h2, h3 {
            font-family: 'Orbitron', sans-serif;
            font-weight: 700;
            color: var(--color-accent);
        }

        h1 { font-size: 3rem; }
        h2 { font-size: 2.5rem; }
        h3 { font-size: 2rem; }

        a {
            color: var(--color-secondary);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        a:hover {
            color: var(--color-tertiary);
        }

        p {
            margin-bottom: 1rem;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1rem;
        }

        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: rgba(28, 15, 43, 0.9);
            backdrop-filter: blur(5px);
            z-index: 1000;
            padding: 1rem 0;
            border-bottom: 2px solid var(--color-secondary);
            animation: slideInDown 1s ease-out;
        }

        header .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-family: 'Orbitron', sans-serif;
            font-size: 1.5rem;
            color: var(--color-accent);
            text-transform: uppercase;
        }

        nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }

        nav a {
            font-size: 1.1rem;
            text-transform: uppercase;
            font-weight: bold;
        }

        .burger-menu {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 5px;
        }

        .burger-menu span {
            width: 25px;
            height: 3px;
            background-color: var(--color-accent);
            transition: all 0.3s ease-in-out;
        }

        .mobile-nav {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background-color: var(--color-primary);
            flex-direction: column;
            justify-content: center;
            align-items: center;
            gap: 2rem;
            z-index: 999;
            transform: translateX(-100%);
            transition: transform 0.5s ease-in-out;
        }

        .mobile-nav.open {
            transform: translateX(0);
        }

        .mobile-nav ul {
            flex-direction: column;
            text-align: center;
            list-style: none;
            padding: 0;
        }

        .mobile-nav a {
            font-size: 2rem;
            font-weight: bold;
            display: block;
            padding: 1rem 0;
        }

        .mobile-nav .close-btn {
            position: absolute;
            top: 2rem;
            right: 2rem;
            font-size: 3rem;
            color: var(--color-accent);
            cursor: pointer;
        }

        section {
            padding: 6rem 0;
            position: relative;
            z-index: 1;
        }

        .hero {
            background: linear-gradient(rgba(28, 15, 43, 0.8), rgba(28, 15, 43, 0.8)), url('../img/09.webp') no-repeat center center/cover;
            padding: 10rem 0;
            text-align: center;
            animation: fadeIn 2s ease-in;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .hero-content {
            animation: textRise 1.5s ease-out;
        }

        .hero h1 {
            font-size: 4rem;
            margin-bottom: 1rem;
            text-shadow: 2px 2px 5px rgba(0,0,0,0.5);
        }

        .hero p {
            font-size: 1.5rem;
            margin-bottom: 2rem;
            color: var(--color-tertiary);
            text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
        }

        .cta-button {
            background-color: var(--color-secondary);
            color: var(--color-background);
            padding: 1rem 2rem;
            border-radius: 50px;
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 2px;
            transition: transform 0.3s ease, background-color 0.3s ease;
            display: inline-block;
        }

        .cta-button:hover {
            transform: scale(1.05);
            background-color: var(--color-tertiary);
        }

        .about {
            background-color: var(--color-primary);
        }

        .about h2 {
            text-align: center;
            margin-bottom: 3rem;
        }

        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: center;
        }

        .about-image {
            transform: translateY(50px);
            opacity: 0;
            transition: all 1s ease-out;
            border-radius: 10px;
            box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
        }

        .about-image.visible {
            transform: translateY(0);
            opacity: 1;
        }

        .about-image img {
            width: 100%;
            height: auto;
            display: block;
            border-radius: 10px;
        }

        .products {
            background-color: var(--color-background);
        }

        .products h2 {
            text-align: center;
            margin-bottom: 3rem;
        }

        .product-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .product-card {
            background-color: var(--color-primary);
            padding: 2rem;
            border-radius: 10px;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0,0,0,0.3);
            transform: scale(0.9);
            opacity: 0;
            transition: all 0.8s ease-in-out;
        }

        .product-card.visible {
            transform: scale(1);
            opacity: 1;
        }

        .product-card img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            border-radius: 8px;
            margin-bottom: 1rem;
        }

        .prices {
            background-color: var(--color-primary);
            text-align: center;
        }

        .prices h2 {
            margin-bottom: 3rem;
        }

        .price-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
        }

        .price-card {
            background-color: var(--color-background);
            padding: 2.5rem;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.3);
            transform: translateY(50px);
            opacity: 0;
            transition: all 0.8s ease-out;
        }

        .price-card.visible {
            transform: translateY(0);
            opacity: 1;
        }

        .price-card h3 {
            color: var(--color-secondary);
            margin-bottom: 1rem;
        }

        .price-card .price {
            font-family: 'Orbitron', sans-serif;
            font-size: 3rem;
            font-weight: bold;
            color: var(--color-accent);
            margin-bottom: 1rem;
        }

        .price-card ul {
            list-style: none;
            text-align: left;
            margin-bottom: 2rem;
        }

        .price-card li {
            padding: 0.5rem 0;
            border-bottom: 1px dashed var(--color-tertiary);
        }

        .price-card li:last-child {
            border-bottom: none;
        }

        .gallery {
            background-color: var(--color-background);
        }

        .gallery h2 {
            text-align: center;
            margin-bottom: 3rem;
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1rem;
        }

        .gallery-item {
            overflow: hidden;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.3);
            opacity: 0;
            transform: scale(0.9);
            transition: all 0.8s ease-in-out;
        }

        .gallery-item.visible {
            opacity: 1;
            transform: scale(1);
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: transform 0.5s ease;
        }

        .gallery-item img:hover {
            transform: scale(1.1);
        }

        .feedback {
            background-color: var(--color-primary);
        }

        .feedback h2 {
            text-align: center;
            margin-bottom: 3rem;
        }

        .slider-container {
            position: relative;
            overflow: hidden;
        }

        .feedback-slider {
            display: flex;
            transition: transform 0.5s ease-in-out;
        }

        .feedback-card {
            min-width: 100%;
            text-align: center;
            padding: 2rem;
            background-color: var(--color-background);
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.3);
            margin: 0 1rem;
            box-sizing: border-box;
        }

        .feedback-card p {
            font-style: italic;
            margin-bottom: 1rem;
            color: var(--color-tertiary);
        }

        .feedback-card .author {
            font-weight: bold;
            color: var(--color-accent);
        }

        .slider-controls {
            text-align: center;
            margin-top: 2rem;
        }

        .slider-dot {
            height: 10px;
            width: 10px;
            background-color: var(--color-tertiary);
            border-radius: 50%;
            display: inline-block;
            margin: 0 5px;
            cursor: pointer;
            transition: background-color 0.3s ease, transform 0.3s ease;
        }

        .slider-dot.active {
            background-color: var(--color-accent);
            transform: scale(1.2);
        }

        .faq {
            background-color: var(--color-background);
        }

        .faq h2 {
            text-align: center;
            margin-bottom: 3rem;
        }

        .faq-item {
            border-bottom: 1px solid var(--color-secondary);
            margin-bottom: 1rem;
        }

        .faq-question {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 0;
            cursor: pointer;
            font-weight: bold;
            color: var(--color-accent);
        }

        .faq-question:hover {
            color: var(--color-tertiary);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.5s ease-in-out;
            padding: 0 1rem;
        }

        .faq-answer p {
            padding: 1rem 0;
        }

        .contact-form-section {
            background-color: var(--color-primary);
        }

        .contact-form-section h2 {
            text-align: center;
            margin-bottom: 2rem;
        }

        .contact-form {
            max-width: 600px;
            margin: 0 auto;
            background-color: var(--color-background);
            padding: 2rem;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.3);
        }

        .contact-form label {
            display: block;
            margin-bottom: 0.5rem;
            color: var(--color-tertiary);
        }

        .contact-form input {
            width: 100%;
            padding: 0.75rem;
            margin-bottom: 1.5rem;
            border: 1px solid var(--color-secondary);
            background-color: transparent;
            color: var(--color-text);
            border-radius: 5px;
        }

        .contact-form input::placeholder {
            color: rgba(227, 227, 227, 0.5);
        }

        .contact-form button {
            display: block;
            width: 100%;
            padding: 1rem;
            background-color: var(--color-secondary);
            color: var(--color-background);
            border: none;
            border-radius: 50px;
            font-weight: bold;
            text-transform: uppercase;
            cursor: pointer;
            transition: background-color 0.3s ease, transform 0.3s ease;
        }

        .contact-form button:hover {
            background-color: var(--color-tertiary);
            transform: scale(1.02);
        }

        .popup {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.8);
            z-index: 2000;
            justify-content: center;
            align-items: center;
        }

        .popup-content {
            background-color: var(--color-primary);
            padding: 2rem;
            border-radius: 10px;
            text-align: center;
            max-width: 400px;
            box-shadow: 0 5px 25px rgba(0,0,0,0.5);
        }

        .popup-content h3 {
            color: var(--color-accent);
            margin-bottom: 1rem;
        }

        .popup-close {
            position: absolute;
            top: 10px;
            right: 10px;
            font-size: 2rem;
            cursor: pointer;
            color: var(--color-tertiary);
        }

        .disclaimer {
            background-color: var(--color-background);
            padding: 2rem 0;
            font-size: 0.8rem;
            color: rgba(227, 227, 227, 0.7);
            text-align: center;
        }

        .disclaimer p {
            margin-bottom: 0.5rem;
        }

        .cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background-color: rgba(28, 15, 43, 0.95);
            padding: 1rem;
            z-index: 1001;
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 1rem;
            font-size: 0.9rem;
            transform: translateY(100%);
            transition: transform 0.5s ease-in-out;
        }

        .cookie-banner.visible {
            transform: translateY(0);
        }

        .cookie-banner p {
            margin: 0;
        }

        .cookie-banner a {
            color: var(--color-accent);
            text-decoration: underline;
        }

        .cookie-banner button {
            background-color: var(--color-secondary);
            color: var(--color-background);
            border: none;
            padding: 0.5rem 1rem;
            border-radius: 5px;
            cursor: pointer;
            font-weight: bold;
            transition: background-color 0.3s ease;
        }

        .cookie-banner button:hover {
            background-color: var(--color-tertiary);
        }

        footer {
            background-color: var(--color-primary);
            color: var(--color-text);
            padding: 2rem 0;
            text-align: center;
        }

        .footer-content {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1rem;
        }

        .footer-logo {
            font-family: 'Orbitron', sans-serif;
            font-size: 1.5rem;
            color: var(--color-accent);
        }

        .footer-links ul {
            display: flex;
            justify-content: center;
            list-style: none;
            gap: 1.5rem;
            margin: 1rem 0;
        }

        .footer-links a {
            color: var(--color-tertiary);
        }

        .footer-links a:hover {
            color: var(--color-accent);
        }

        .footer-contact {
            font-size: 0.9rem;
            line-height: 1.8;
            color: rgba(227, 227, 227, 0.7);
        }
        
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        @keyframes slideInDown {
            from { transform: translateY(-100%); }
            to { transform: translateY(0); }
        }
        
        @keyframes textRise {
            from { opacity: 0; transform: translateY(50px); }
            to { opacity: 1; transform: translateY(0); }
        }

        @media (max-width: 768px) {
            h1 { font-size: 2.5rem !important; }
            h2 { font-size: 2rem !important; }
            h3 { font-size: 1.5rem !important; }

            nav { display: none; }
            .burger-menu { display: flex; }

            .about-grid {
                grid-template-columns: 1fr;
            }

            .price-grid {
                grid-template-columns: 1fr;
            }

            .contact-form {
                padding: 1.5rem;
            }
        }

