:root {
            --primary-bg: #1A1A1A;
            --secondary-bg: #2C2C2C;
            --accent-color: #007BFF;
            --text-color: #E0E0E0;
            --highlight-color: #1E90FF;
            --border-color: #444444;
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
            transition: color 0.3s ease, background-color 0.3s ease;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            background-color: var(--primary-bg);
            color: var(--text-color);
            line-height: 1.6;
        }

        a {
            color: var(--highlight-color);
            text-decoration: none;
        }

        a:hover {
            text-decoration: underline;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* HEADER */
        .main-header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background: rgba(26, 26, 26, 0.9);
            backdrop-filter: blur(5px);
            z-index: 1000;
            padding: 1rem 0;
            border-bottom: 1px solid var(--border-color);
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 1.8rem;
            font-weight: bold;
            color: var(--highlight-color);
            text-transform: uppercase;
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 2rem;
        }

        .nav-menu a {
            font-weight: 500;
            padding: 0.5rem 1rem;
            border-radius: 5px;
            transition: background-color 0.3s ease;
        }

        .nav-menu a:hover {
            background-color: var(--secondary-bg);
            text-decoration: none;
        }

        .burger-menu {
            display: none;
            cursor: pointer;
            flex-direction: column;
            gap: 5px;
        }

        .burger-menu span {
            display: block;
            width: 25px;
            height: 3px;
            background-color: var(--text-color);
            transition: transform 0.3s ease, opacity 0.3s ease;
            margin: 4px 0;
        }

        @media (max-width: 768px) {
            .nav-menu {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: var(--secondary-bg);
                border-top: 1px solid var(--border-color);
                padding: 1rem 0;
                text-align: center;
            }

            .nav-menu.open {
                display: flex;
            }

            .burger-menu {
                display: flex;
            }
        }

        /* HERO */
        .hero {
            padding-top: 150px;
            padding-bottom: 100px;
            min-height: 100vh;
            display: flex;
            align-items: center;
            text-align: center;
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../img/01.webp') no-repeat center center/cover;
            animation: fadeIn 1s ease-in;
            position: relative;
        }
        
        .hero-content {
            max-width: 800px;
            margin: 0 auto;
        }

        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 1rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: var(--highlight-color);
            text-shadow: 2px 2px 5px rgba(0,0,0,0.5);
        }

        .hero p {
            font-size: 1.25rem;
            margin-bottom: 2rem;
            opacity: 0.9;
        }

        .btn {
            background-color: var(--accent-color);
            color: #fff;
            padding: 15px 30px;
            border-radius: 50px;
            font-weight: bold;
            transition: transform 0.3s ease;
        }

        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 123, 255, 0.4);
            text-decoration: none;
        }

        /* SECTIONS */
        section {
            padding: 80px 0;
            overflow: hidden;
        }

        .section-heading {
            text-align: center;
            margin-bottom: 50px;
        }

        .section-heading h2 {
            font-size: 2.5rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            display: inline-block;
            position: relative;
        }
        
        .section-heading h2::after {
            content: '';
            position: absolute;
            left: 50%;
            bottom: -10px;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background-color: var(--accent-color);
        }

        /* ABOUT */
        .about-content {
            display: flex;
            align-items: center;
            gap: 40px;
        }

        .about-text {
            flex: 1;
        }

        .about-text h3 {
            font-size: 1.8rem;
            margin-bottom: 1rem;
        }

        .about-text p {
            margin-bottom: 1rem;
            opacity: 0.8;
        }

        .about-image {
            flex: 1;
            max-width: 500px;
        }

        .about-image img {
            width: 100%;
            border-radius: 10px;
            box-shadow: 0 10px 20px rgba(0,0,0,0.3);
            transform: rotate(-3deg);
            transition: transform 0.5s ease;
        }

        .about-image img:hover {
            transform: rotate(0deg) scale(1.05);
        }

        /* PRODUCTS */
        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
        }

        .product-card {
            background-color: var(--secondary-bg);
            border-radius: 10px;
            padding: 2rem;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
            transition: transform 0.3s ease;
        }

        .product-card:hover {
            transform: translateY(-10px);
        }

        .product-card h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: var(--highlight-color);
        }

        .product-card p {
            opacity: 0.8;
        }
        
        .product-card img {
            max-width: 100px;
            margin-bottom: 1rem;
            filter: drop-shadow(0 0 5px var(--accent-color));
        }

        /* PRICES */
        .prices-grid {
            display: flex;
            justify-content: center;
            gap: 30px;
            flex-wrap: wrap;
        }

        .price-card {
            background-color: var(--secondary-bg);
            border: 2px solid var(--border-color);
            border-radius: 10px;
            padding: 40px 30px;
            text-align: center;
            max-width: 350px;
            box-shadow: 0 10px 20px rgba(0,0,0,0.2);
            transition: transform 0.3s ease, border-color 0.3s ease;
        }
        
        .price-card:hover {
            transform: scale(1.05);
            border-color: var(--accent-color);
        }

        .price-card.featured {
            border-color: var(--highlight-color);
            background-color: #333;
            transform: scale(1.1);
        }

        .price-card h3 {
            font-size: 1.7rem;
            margin-bottom: 10px;
            color: var(--highlight-color);
        }

        .price-card .price {
            font-size: 3rem;
            font-weight: bold;
            margin-bottom: 20px;
            color: var(--text-color);
        }
        
        .price-card .price span {
            font-size: 1.2rem;
            font-weight: normal;
            opacity: 0.7;
        }
        
        .price-card ul {
            list-style: none;
            text-align: left;
            margin-bottom: 30px;
            opacity: 0.8;
        }
        
        .price-card li {
            margin-bottom: 10px;
            position: relative;
            padding-left: 25px;
        }
        
        .price-card li::before {
            content: '✔';
            color: var(--accent-color);
            position: absolute;
            left: 0;
        }
        
        /* GALLERY */
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 15px;
        }
        
        .gallery-item {
            position: relative;
            overflow: hidden;
            border-radius: 10px;
        }
        
        .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 (SLIDER) */
        .feedback-slider {
            position: relative;
            max-width: 800px;
            margin: 0 auto;
            overflow: hidden;
        }
        
        .slider-wrapper {
            display: flex;
            transition: transform 0.5s ease;
        }
        
        .feedback-card {
            min-width: 100%;
            background-color: var(--secondary-bg);
            border-radius: 10px;
            padding: 40px;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }
        
        .feedback-card p {
            font-style: italic;
            margin-bottom: 20px;
            font-size: 1.1rem;
        }
        
        .feedback-card .author {
            font-weight: bold;
            color: var(--highlight-color);
        }
        
        .slider-nav {
            position: absolute;
            top: 50%;
            width: 100%;
            display: flex;
            justify-content: space-between;
            transform: translateY(-50%);
        }
        
        .slider-nav button {
            background-color: rgba(0,0,0,0.5);
            color: #fff;
            border: none;
            font-size: 2rem;
            padding: 10px;
            cursor: pointer;
            border-radius: 5px;
            opacity: 0.7;
            transition: opacity 0.3s ease;
        }
        
        .slider-nav button:hover {
            opacity: 1;
        }

        /* FAQ */
        .faq-item {
            background-color: var(--secondary-bg);
            border-radius: 10px;
            margin-bottom: 15px;
            overflow: hidden;
        }
        
        .faq-question {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px;
            cursor: pointer;
            font-weight: bold;
            font-size: 1.1rem;
        }
        
        .faq-question:hover {
            background-color: #333;
        }
        
        .faq-question::after {
            content: '+';
            font-size: 1.5rem;
            transition: transform 0.3s ease;
        }
        
        .faq-question.active::after {
            transform: rotate(45deg);
        }
        
        .faq-answer {
            padding: 0 20px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }
        
        .faq-answer p {
            padding-bottom: 20px;
            opacity: 0.8;
        }

        /* FORM */
        .contact-form {
            max-width: 600px;
            margin: 0 auto;
            background-color: var(--secondary-bg);
            padding: 40px;
            border-radius: 10px;
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 5px;
            font-weight: bold;
        }
        
        .form-group input {
            width: 100%;
            padding: 10px;
            background-color: #444;
            border: 1px solid var(--border-color);
            color: var(--text-color);
            border-radius: 5px;
        }
        
        .form-group button {
            width: 100%;
            background-color: var(--accent-color);
            color: #fff;
            padding: 15px;
            border: none;
            border-radius: 5px;
            font-weight: bold;
            font-size: 1.1rem;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }
        
        .form-group button:hover {
            background-color: #0056b3;
        }

        /* DISCLAIMER */
        .disclaimer {
            background-color: #111;
            padding: 30px 0;
            text-align: center;
            font-size: 0.9rem;
            color: #aaa;
            border-top: 1px solid #333;
        }

        /* FOOTER */
        .main-footer {
            background-color: #000;
            color: #aaa;
            padding: 50px 0;
            border-top: 1px solid #333;
            text-align: center;
        }
        
        .footer-content {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 20px;
        }
        
        .footer-links {
            list-style: none;
            display: flex;
            gap: 20px;
        }
        
        .footer-links a {
            color: #aaa;
            transition: color 0.3s ease;
        }
        
        .footer-links a:hover {
            color: var(--highlight-color);
        }

        /* COOKIE BANNER */
        .cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background-color: rgba(0, 0, 0, 0.9);
            color: #fff;
            padding: 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 15px;
            z-index: 2000;
        }
        
        .cookie-banner p {
            margin: 0;
        }
        
        .cookie-banner .btn {
            background-color: var(--accent-color);
            color: #fff;
            padding: 10px 20px;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }
        
        .cookie-banner .btn:hover {
            background-color: #0056b3;
        }

        /* POPUP */
        .popup {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: 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.open {
            visibility: visible;
            opacity: 1;
        }
        
        .popup-content {
            background-color: var(--secondary-bg);
            padding: 40px;
            border-radius: 10px;
            text-align: center;
            box-shadow: 0 10px 20px rgba(0,0,0,0.5);
        }
        
        .popup-content h3 {
            margin-bottom: 1rem;
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        /* RESPONSIVE */
        @media (max-width: 992px) {
            .about-content {
                flex-direction: column;
                text-align: center;
            }
            .about-image {
                margin-top: 2rem;
            }
        }
        
        @media (max-width: 768px) {
            .nav-menu {
                display: none;
            }
            .burger-menu {
                display: block;
            }
            .hero h1 {
                font-size: 2.5rem;
            }
            .hero p {
                font-size: 1rem;
            }
        }

