@import url('https://fonts.googleapis.com/css2?family=Roboto+Mono:wght@400;700&family=Bebas+Neue&display=swap');

        :root {
            --primary-color: #f72585;
            --secondary-color: #b5179e;
            --accent-color: #7209b7;
            --background-color: #1a1a1a;
            --text-color: #e0e0e0;
            --card-bg: #2d2d2d;
            --border-color: #4a4a4a;
            --hover-color: #f72585;
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Roboto Mono', monospace;
            background-color: var(--background-color);
            color: var(--text-color);
            line-height: 1.6;
            overflow-x: hidden;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header */
        .header {
            background-color: var(--background-color);
            padding: 1rem 0;
            position: fixed;
            width: 100%;
            top: 0;
            left: 0;
            z-index: 1000;
            border-bottom: 2px solid var(--border-color);
            transition: all 0.3s ease;
        }

        .header.scrolled {
            background-color: rgba(26, 26, 26, 0.95);
            backdrop-filter: blur(5px);
        }

        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-family: 'Bebas Neue', sans-serif;
            font-size: 2.5rem;
            color: var(--primary-color);
            text-decoration: none;
            letter-spacing: 2px;
            text-shadow: 2px 2px var(--accent-color);
        }

        .nav-links {
            list-style: none;
            display: flex;
            gap: 2rem;
            transition: transform 0.3s ease-in-out;
        }

        .nav-links a {
            color: var(--text-color);
            text-decoration: none;
            font-weight: bold;
            font-size: 1rem;
            position: relative;
            padding-bottom: 5px;
            transition: color 0.3s ease;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            display: block;
            margin-top: 5px;
            right: 0;
            background: var(--primary-color);
            transition: width 0.4s ease;
        }

        .nav-links a:hover::after {
            width: 100%;
            left: 0;
            background: var(--primary-color);
        }
        
        .nav-links a:hover {
            color: var(--hover-color);
        }

        .burger {
            display: none;
            cursor: pointer;
            flex-direction: column;
            gap: 5px;
            z-index: 1001;
        }

        .burger div {
            width: 25px;
            height: 3px;
            background-color: var(--text-color);
            transition: all 0.3s ease;
        }

        .burger.active .line1 {
            transform: rotate(-45deg) translate(-5px, 6px);
        }

        .burger.active .line2 {
            opacity: 0;
        }

        .burger.active .line3 {
            transform: rotate(45deg) translate(-5px, -6px);
        }

        @media (max-width: 768px) {
            .nav-links {
                position: fixed;
                right: 0;
                top: 0;
                height: 100vh;
                background-color: var(--background-color);
                flex-direction: column;
                width: 70%;
                transform: translateX(100%);
                padding-top: 5rem;
                align-items: center;
                gap: 2rem;
                z-index: 999;
                border-left: 2px solid var(--border-color);
            }
            .nav-links.nav-active {
                transform: translateX(0);
            }
            .burger {
                display: flex;
            }
        }
        
        /* General Sections */
        section {
            padding: 80px 0;
            position: relative;
        }
        
        .section-heading {
            font-family: 'Bebas Neue', sans-serif;
            font-size: 3rem;
            text-align: center;
            margin-bottom: 50px;
            color: var(--primary-color);
            letter-spacing: 1px;
            text-shadow: 1px 1px var(--accent-color);
        }

        .section-heading::after {
            content: '';
            display: block;
            width: 80px;
            height: 3px;
            background-color: var(--secondary-color);
            margin: 10px auto 0;
        }

        /* Hero Section */
        .hero {
            height: 100vh;
            display: flex;
            align-items: center;
            text-align: center;
            background: url('../img/11.webp') no-repeat center center/cover;
            position: relative;
            padding-top: 0;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.7);
        }

        .hero-content {
            position: relative;
            z-index: 1;
        }

        .hero h1 {
            font-family: 'Bebas Neue', sans-serif;
            font-size: 4rem;
            color: #fff;
            margin-bottom: 20px;
            letter-spacing: 3px;
            animation: fadeInDown 1s ease-in-out;
        }

        .hero p {
            font-size: 1.2rem;
            max-width: 600px;
            margin: 0 auto 30px;
            color: #ccc;
            animation: fadeInUp 1s ease-in-out 0.5s backwards;
        }

        .cta-button {
            background-color: var(--primary-color);
            color: white;
            padding: 15px 30px;
            text-decoration: none;
            font-weight: bold;
            border-radius: 50px;
            transition: background-color 0.3s ease, transform 0.3s ease;
            box-shadow: 0 4px 15px rgba(247, 37, 133, 0.4);
            animation: bounceIn 1s ease-in-out 1s backwards;
        }

        .cta-button:hover {
            background-color: var(--secondary-color);
            transform: translateY(-5px);
        }

        /* About Section */
        .about .container {
            display: flex;
            gap: 40px;
            align-items: center;
        }

        .about-text {
            flex: 1;
            transform: translateX(-50px);
            opacity: 0;
            transition: all 0.8s ease-out;
        }

        .about-text.visible {
            transform: translateX(0);
            opacity: 1;
        }

        .about-image {
            flex: 1;
            animation: fadeInRight 1s ease-in-out;
        }

        .about-image img {
            max-width: 100%;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
            transition: transform 0.5s ease;
        }

        .about-image img:hover {
            transform: scale(1.05);
        }

        /* Product Description */
        .products {
            background-color: var(--card-bg);
        }
        
        .product-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .product-item {
            background-color: var(--background-color);
            padding: 30px;
            border-radius: 10px;
            text-align: center;
            box-shadow: 0 5px 20px rgba(0,0,0,0.2);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            transform: translateY(20px);
            opacity: 0;
        }

        .product-item.visible {
            transform: translateY(0);
            opacity: 1;
        }

        .product-item img {
            max-width: 100%;
            border-radius: 8px;
            margin-bottom: 20px;
        }

        .product-item h3 {
            color: var(--secondary-color);
            font-family: 'Bebas Neue', sans-serif;
            font-size: 1.8rem;
            margin-bottom: 10px;
        }

        /* Prices */
        .prices {
            background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
            color: white;
        }

        .prices .section-heading {
            color: white;
            text-shadow: none;
        }

        .price-grid {
            display: flex;
            justify-content: center;
            gap: 30px;
            flex-wrap: wrap;
        }

        .price-card {
            background-color: rgba(255, 255, 255, 0.1);
            padding: 40px;
            border-radius: 15px;
            text-align: center;
            width: 300px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
            backdrop-filter: blur(5px);
            border: 2px solid rgba(255, 255, 255, 0.2);
            transition: transform 0.3s ease, background-color 0.3s ease;
            opacity: 0;
            transform: translateY(50px);
        }

        .price-card.visible {
            transform: translateY(0);
            opacity: 1;
        }

        .price-card h3 {
            font-family: 'Bebas Neue', sans-serif;
            font-size: 2.2rem;
            margin-bottom: 10px;
            color: var(--accent-color);
            letter-spacing: 1px;
        }

        .price-card .price {
            font-family: 'Bebas Neue', sans-serif;
            font-size: 3rem;
            font-weight: bold;
            margin-bottom: 20px;
        }

        .price-card .price span {
            font-size: 1.5rem;
            font-weight: normal;
        }
        
        .price-card ul {
            list-style: none;
            margin-bottom: 30px;
            text-align: left;
        }
        
        .price-card ul li {
            margin-bottom: 10px;
            padding-left: 20px;
            position: relative;
        }

        .price-card ul li::before {
            content: '✔';
            color: var(--primary-color);
            position: absolute;
            left: 0;
        }

        .price-card .cta-button {
            padding: 12px 25px;
        }

        /* Gallery */
        .gallery .container {
            text-align: center;
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
        }

        .gallery-item {
            overflow: hidden;
            border-radius: 10px;
            position: relative;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
            animation: fadeIn 1s ease-in-out;
        }

        .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 */
        .feedback {
            background-color: var(--card-bg);
        }

        .feedback-slider {
            position: relative;
            overflow: hidden;
            padding: 20px;
        }

        .slider-wrapper {
            display: flex;
            transition: transform 0.5s ease-in-out;
        }

        .feedback-card {
            min-width: 100%;
            flex-shrink: 0;
            padding: 40px;
            background-color: var(--background-color);
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.2);
            text-align: center;
        }

        .feedback-card blockquote {
            font-style: italic;
            margin-bottom: 20px;
            position: relative;
        }
        
        .feedback-card blockquote::before {
            content: '“';
            font-family: serif;
            font-size: 4rem;
            color: var(--primary-color);
            position: absolute;
            top: -20px;
            left: 50%;
            transform: translateX(-50%);
            opacity: 0.2;
        }

        .feedback-author {
            font-weight: bold;
            color: var(--secondary-color);
        }

        .slider-nav {
            text-align: center;
            margin-top: 20px;
        }

        .slider-nav button {
            background: none;
            border: 1px solid var(--primary-color);
            color: var(--primary-color);
            padding: 8px 15px;
            margin: 0 5px;
            cursor: pointer;
            border-radius: 5px;
            transition: background-color 0.3s ease;
        }

        .slider-nav button:hover {
            background-color: var(--primary-color);
            color: white;
        }

        /* FAQ */
        .faq .container {
            max-width: 800px;
        }
        
        .faq-item {
            background-color: var(--card-bg);
            margin-bottom: 15px;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        
        .faq-question {
            font-weight: bold;
            cursor: pointer;
            padding: 20px;
            background-color: var(--background-color);
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-radius: 8px;
            transition: background-color 0.3s ease;
        }

        .faq-question:hover {
            background-color: #252525;
        }

        .faq-question::after {
            content: '+';
            font-size: 1.5rem;
            color: var(--primary-color);
            transition: transform 0.3s ease;
        }

        .faq-question.active::after {
            content: '-';
            transform: rotate(180deg);
        }
        
        .faq-answer {
            padding: 0 20px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease-out;
            background-color: var(--card-bg);
            border-bottom-left-radius: 8px;
            border-bottom-right-radius: 8px;
        }

        .faq-answer p {
            padding: 20px 0;
        }

        /* Contact Form */
        .contact-form {
            display: flex;
            flex-direction: column;
            gap: 20px;
            max-width: 600px;
            margin: 0 auto;
        }

        .contact-form input,
        .contact-form textarea {
            width: 100%;
            padding: 15px;
            background-color: var(--background-color);
            border: 2px solid var(--border-color);
            border-radius: 5px;
            color: var(--text-color);
            transition: border-color 0.3s ease;
        }

        .contact-form input:focus,
        .contact-form textarea:focus {
            outline: none;
            border-color: var(--primary-color);
        }

        .contact-form button {
            background-color: var(--primary-color);
            color: white;
            padding: 15px;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            font-size: 1.1rem;
            font-weight: bold;
            transition: background-color 0.3s ease;
        }

        .contact-form button:hover {
            background-color: var(--secondary-color);
        }

        /* Disclaimer */
        .disclaimer {
            background-color: #111;
            padding: 20px;
            text-align: center;
            font-size: 0.8rem;
            color: #999;
            border-top: 1px solid #333;
        }
        
        /* Cookie Banner */
        .cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background-color: rgba(0,0,0,0.9);
            color: white;
            padding: 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transform: translateY(100%);
            transition: transform 0.5s ease-in-out;
            z-index: 2000;
        }
        
        .cookie-banner.show {
            transform: translateY(0);
        }

        .cookie-banner p {
            margin: 0;
        }

        .cookie-banner a {
            color: var(--primary-color);
            text-decoration: underline;
        }

        .cookie-banner button {
            background-color: var(--primary-color);
            color: white;
            border: none;
            padding: 10px 20px;
            cursor: pointer;
            border-radius: 5px;
            transition: background-color 0.3s ease;
        }

        .cookie-banner button:hover {
            background-color: var(--secondary-color);
        }

        /* Footer */
        .footer {
            background-color: #0d0d0d;
            padding: 40px 0 20px;
            text-align: center;
            border-top: 2px solid var(--border-color);
        }

        .footer .container {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: flex-start;
            text-align: left;
        }

        .footer-logo {
            flex-basis: 100%;
            text-align: center;
            margin-bottom: 20px;
        }
        
        .footer-logo .logo {
             font-size: 2.5rem;
             color: var(--primary-color);
             text-shadow: 2px 2px var(--accent-color);
        }

        .footer-links, .footer-contacts {
            flex: 1;
            min-width: 250px;
            margin-bottom: 20px;
        }

        .footer-links h4, .footer-contacts h4 {
            font-family: 'Bebas Neue', sans-serif;
            font-size: 1.5rem;
            color: var(--primary-color);
            margin-bottom: 15px;
        }

        .footer-links ul {
            list-style: none;
        }

        .footer-links a {
            color: #ccc;
            text-decoration: none;
            display: block;
            margin-bottom: 10px;
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: var(--hover-color);
        }

        .footer-contacts p {
            margin-bottom: 10px;
        }

        .footer-bottom {
            margin-top: 30px;
            padding-top: 20px;
            border-top: 1px solid #333;
            width: 100%;
        }
        
        /* Animations */
        @keyframes fadeInDown {
            from { opacity: 0; transform: translateY(-50px); }
            to { opacity: 1; transform: translateY(0); }
        }

        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(50px); }
            to { opacity: 1; transform: translateY(0); }
        }

        @keyframes fadeInRight {
            from { opacity: 0; transform: translateX(50px); }
            to { opacity: 1; transform: translateX(0); }
        }

        @keyframes bounceIn {
            0%, 20%, 50%, 80%, 100% {
                transform: translateY(0);
            }
            40% {
                transform: translateY(-20px);
            }
            60% {
                transform: translateY(-10px);
            }
        }

