:root {
            --primary: #FFD700;
            --secondary: #4A2545;
            --accent: #00B4D8;
            --text: #2D2D2A;
            --light: #F8F7F2;
            --dark: #1A1A1A;
            --highlight: #FF6B6B;
            --retro-blue: #5D8AA8;
            --retro-pink: #DE6FA1;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Courier New', monospace;
        }
        
        body {
            background-color: var(--light);
            color: var(--text);
            line-height: 1.6;
            padding-top: 80px;
            background-image: linear-gradient(to bottom, rgba(248, 247, 242, 0.9), rgba(248, 247, 242, 0.9)), url('https://images.unsplash.com/photo-1571771894821-ce9b6c11b08e?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
            background-attachment: fixed;
            background-size: cover;
        }
        
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: var(--secondary);
            color: var(--light);
            padding: 1rem;
            z-index: 1000;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
            border-bottom: 3px solid var(--primary);
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .logo {
            font-size: 1.8rem;
            font-weight: bold;
            color: var(--primary);
            text-decoration: none;
            display: flex;
            align-items: center;
        }
        
        .logo span {
            color: var(--light);
            margin-left: 0.5rem;
        }
        
        nav ul {
            display: flex;
            list-style: none;
        }
        
        nav ul li {
            margin-left: 1.5rem;
        }
        
        nav ul li a {
            color: var(--light);
            text-decoration: none;
            font-weight: bold;
            transition: color 0.3s;
            position: relative;
        }
        
        nav ul li a:hover {
            color: var(--primary);
        }
        
        nav ul li a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 0;
            background-color: var(--primary);
            transition: width 0.3s;
        }
        
        nav ul li a:hover::after {
            width: 100%;
        }
        
        .burger {
            display: none;
            cursor: pointer;
        }
        
        .burger div {
            width: 25px;
            height: 3px;
            background-color: var(--light);
            margin: 5px;
            transition: all 0.3s ease;
        }
        
        section {
            padding: 4rem 1rem;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        h1, h2, h3 {
            color: var(--secondary);
            margin-bottom: 1.5rem;
            font-weight: bold;
        }
        
        h1 {
            font-size: 3rem;
            line-height: 1.2;
            text-transform: uppercase;
            letter-spacing: 2px;
        }
        
        h2 {
            font-size: 2.2rem;
            position: relative;
            display: inline-block;
        }
        
        h2::after {
            content: '';
            position: absolute;
            width: 50%;
            height: 4px;
            bottom: -10px;
            left: 0;
            background-color: var(--primary);
        }
        
        h3 {
            font-size: 1.5rem;
            color: var(--retro-blue);
        }
        
        p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
        }
        
        .btn {
            display: inline-block;
            background-color: var(--primary);
            color: var(--secondary);
            padding: 0.8rem 1.8rem;
            border: none;
            border-radius: 30px;
            font-weight: bold;
            text-decoration: none;
            cursor: pointer;
            transition: all 0.3s;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 0.9rem;
        }
        
        .btn:hover {
            background-color: var(--highlight);
            color: var(--light);
            transform: translateY(-3px);
            box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
        }
        
        .btn-secondary {
            background-color: var(--secondary);
            color: var(--light);
        }
        
        .btn-secondary:hover {
            background-color: var(--retro-blue);
        }
        
        /* Hero Section */
        .hero {
            text-align: center;
            padding: 6rem 1rem;
            position: relative;
            overflow: hidden;
            background: linear-gradient(135deg, rgba(74, 37, 69, 0.8) 0%, rgba(222, 111, 161, 0.6) 100%);
            color: var(--light);
            border-radius: 0 0 20px 20px;
            margin-bottom: 2rem;
        }
        
        .hero h1 {
            color: var(--light);
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
            animation: fadeIn 1s ease-in-out;
        }
        
        .hero p {
            font-size: 1.3rem;
            max-width: 800px;
            margin: 0 auto 2rem;
            color: var(--light);
            opacity: 0.9;
        }
        
        .hero-btns {
            display: flex;
            justify-content: center;
            gap: 1rem;
            margin-top: 2rem;
        }
        
        .hero-image {
            margin-top: 2rem;
            position: relative;
            animation: float 6s ease-in-out infinite;
        }
        
        .hero-image img {
            max-width: 100%;
            height: auto;
            border-radius: 15px;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
            border: 5px solid var(--primary);
        }
        
        /* About Section */
        .about {
            background-color: var(--light);
            position: relative;
        }
        
        .about-content {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 2rem;
            margin-top: 2rem;
        }
        
        .about-text {
            flex: 1;
            min-width: 300px;
        }
        
        .about-image {
            flex: 1;
            min-width: 300px;
            text-align: center;
        }
        
        .about-image img {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s;
        }
        
        .about-image img:hover {
            transform: scale(1.03);
        }
        
        /* Products Section */
        .products {
            background-color: var(--light);
        }
        
        .product-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }
        
        .product-card {
            background-color: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s, box-shadow 0.3s;
            border: 1px solid var(--primary);
        }
        
        .product-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
        }
        
        .product-image {
            height: 200px;
            overflow: hidden;
        }
        
        .product-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }
        
        .product-card:hover .product-image img {
            transform: scale(1.1);
        }
        
        .product-info {
            padding: 1.5rem;
        }
        
        .product-info h3 {
            margin-bottom: 0.5rem;
            color: var(--secondary);
        }
        
        .product-info p {
            margin-bottom: 1rem;
            color: var(--text);
        }
        
        /* Prices Section */
        .prices {
            background-color: var(--light);
        }
        
        .price-cards {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 2rem;
            margin-top: 2rem;
        }
        
        .price-card {
            background-color: white;
            border-radius: 10px;
            padding: 2rem;
            flex: 1;
            min-width: 280px;
            max-width: 350px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            border-top: 5px solid var(--primary);
            transition: transform 0.3s;
            position: relative;
            overflow: hidden;
        }
        
        .price-card:hover {
            transform: translateY(-10px);
        }
        
        .price-card h3 {
            text-align: center;
            margin-bottom: 1.5rem;
            color: var(--secondary);
        }
        
        .price {
            font-size: 2.5rem;
            font-weight: bold;
            text-align: center;
            color: var(--secondary);
            margin: 1.5rem 0;
        }
        
        .price span {
            font-size: 1rem;
            color: var(--text);
        }
        
        .price-features {
            list-style: none;
            margin-bottom: 2rem;
        }
        
        .price-features li {
            margin-bottom: 0.8rem;
            position: relative;
            padding-left: 1.5rem;
        }
        
        .price-features li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--primary);
            font-weight: bold;
        }
        
        .price-btn {
            display: block;
            text-align: center;
        }
        
        .special-offer {
            position: absolute;
            top: 0;
            right: 0;
            background-color: var(--highlight);
            color: white;
            padding: 0.3rem 1rem;
            font-size: 0.8rem;
            font-weight: bold;
            transform: rotate(45deg) translate(30%, -50%);
            transform-origin: center;
            width: 150px;
            text-align: center;
        }
        
        /* Gallery Section */
        .gallery {
            background-color: var(--light);
        }
        
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1rem;
            margin-top: 2rem;
        }
        
        .gallery-item {
            position: relative;
            overflow: hidden;
            border-radius: 10px;
            height: 250px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s;
        }
        
        .gallery-item:hover {
            transform: scale(1.05);
        }
        
        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }
        
        .gallery-item:hover img {
            transform: scale(1.1);
        }
        
        .gallery-caption {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
            color: white;
            padding: 1rem;
            transform: translateY(100%);
            transition: transform 0.3s;
        }
        
        .gallery-item:hover .gallery-caption {
            transform: translateY(0);
        }
        
        /* Feedback Section */
        .feedback {
            background-color: var(--light);
        }
        
        .feedback-slider {
            position: relative;
            max-width: 800px;
            margin: 3rem auto 0;
            overflow: hidden;
        }
        
        .feedback-slides {
            display: flex;
            transition: transform 0.5s ease-in-out;
        }
        
        .feedback-slide {
            min-width: 100%;
            padding: 2rem;
            background-color: white;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            text-align: center;
        }
        
        .feedback-avatar {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            object-fit: cover;
            margin: 0 auto 1rem;
            border: 3px solid var(--primary);
        }
        
        .feedback-name {
            font-weight: bold;
            margin-bottom: 0.5rem;
            color: var(--secondary);
        }
        
        .feedback-date {
            color: var(--text);
            opacity: 0.7;
            font-size: 0.9rem;
            margin-bottom: 1rem;
        }
        
        .feedback-text {
            font-style: italic;
            margin-bottom: 1.5rem;
        }
        
        .feedback-rating {
            color: var(--primary);
            font-size: 1.2rem;
            margin-bottom: 1rem;
        }
        
        .feedback-nav {
            display: flex;
            justify-content: center;
            margin-top: 1.5rem;
            gap: 1rem;
        }
        
        .feedback-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: var(--secondary);
            opacity: 0.3;
            cursor: pointer;
            transition: opacity 0.3s;
        }
        
        .feedback-dot.active {
            opacity: 1;
            background-color: var(--primary);
        }
        
        /* FAQ Section */
        .faq {
            background-color: var(--light);
        }
        
        .faq-item {
            margin-bottom: 1rem;
            border: 1px solid #ddd;
            border-radius: 8px;
            overflow: hidden;
            transition: all 0.3s;
        }
        
        .faq-question {
            padding: 1.5rem;
            background-color: white;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: bold;
            color: var(--secondary);
            transition: background-color 0.3s;
        }
        
        .faq-question:hover {
            background-color: #f9f9f9;
        }
        
        .faq-question::after {
            content: '+';
            font-size: 1.5rem;
            transition: transform 0.3s;
        }
        
        .faq-item.active .faq-question::after {
            transform: rotate(45deg);
        }
        
        .faq-answer {
            padding: 0 1.5rem;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease-out, padding 0.3s ease;
            background-color: white;
        }
        
        .faq-item.active .faq-answer {
            max-height: 500px;
            padding: 0 1.5rem 1.5rem;
        }
        
        /* Contact Form */
        .contact-form {
            max-width: 600px;
            margin: 2rem auto 0;
            background-color: white;
            padding: 2rem;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        .form-group {
            margin-bottom: 1.5rem;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: bold;
            color: var(--secondary);
        }
        
        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 0.8rem;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-size: 1rem;
            transition: border-color 0.3s;
        }
        
        .form-group input:focus,
        .form-group textarea:focus {
            border-color: var(--primary);
            outline: none;
        }
        
        .form-submit {
            text-align: center;
        }
        
        textarea {
            min-height: 150px;
            resize: vertical;
        }
        
        /* Disclaimer */
        .disclaimer {
            background-color: var(--secondary);
            color: var(--light);
            padding: 2rem 1rem;
            text-align: center;
            font-size: 0.9rem;
            margin-top: 3rem;
        }
        
        .disclaimer p {
            max-width: 800px;
            margin: 0 auto;
            opacity: 0.8;
        }
        
        /* Footer */
        footer {
            background-color: var(--dark);
            color: var(--light);
            padding: 3rem 1rem 1.5rem;
        }
        
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }
        
        .footer-logo {
            font-size: 1.5rem;
            font-weight: bold;
            color: var(--primary);
            margin-bottom: 1rem;
            display: inline-block;
        }
        
        .footer-about p {
            opacity: 0.8;
            margin-bottom: 1.5rem;
        }
        
        .footer-links h3,
        .footer-contact h3 {
            color: var(--light);
            margin-bottom: 1.5rem;
            font-size: 1.2rem;
            position: relative;
        }
        
        .footer-links h3::after,
        .footer-contact h3::after {
            content: '';
            position: absolute;
            width: 40px;
            height: 3px;
            bottom: -8px;
            left: 0;
            background-color: var(--primary);
        }
        
        .footer-links ul {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 0.8rem;
        }
        
        .footer-links a {
            color: var(--light);
            text-decoration: none;
            opacity: 0.8;
            transition: opacity 0.3s;
        }
        
        .footer-links a:hover {
            opacity: 1;
            color: var(--primary);
        }
        
        .footer-contact p {
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            opacity: 0.8;
        }
        
        .footer-contact i {
            margin-right: 0.8rem;
            color: var(--primary);
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            margin-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.9rem;
            opacity: 0.7;
        }
        
        /* Cookie Banner */
        .cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background-color: var(--secondary);
            color: var(--light);
            padding: 1.5rem;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
            box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.2);
            transform: translateY(100%);
            transition: transform 0.5s ease;
        }
        
        .cookie-banner.show {
            transform: translateY(0);
        }
        
        .cookie-text {
            flex: 1;
            min-width: 250px;
            margin-bottom: 1rem;
        }
        
        .cookie-btns {
            display: flex;
            gap: 1rem;
        }
        
        /* Modal */
        .modal {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: rgba(0, 0, 0, 0.7);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 2000;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.3s, visibility 0.3s;
        }
        
        .modal.show {
            opacity: 1;
            visibility: visible;
        }
        
        .modal-content {
            background-color: white;
            padding: 2rem;
            border-radius: 10px;
            max-width: 500px;
            width: 90%;
            text-align: center;
            position: relative;
            transform: translateY(20px);
            transition: transform 0.3s;
        }
        
        .modal.show .modal-content {
            transform: translateY(0);
        }
        
        .modal-close {
            position: absolute;
            top: 10px;
            right: 10px;
            background: none;
            border: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: var(--text);
        }
        
        /* Animations */
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }
        
        @keyframes float {
            0% { transform: translateY(0px); }
            50% { transform: translateY(-15px); }
            100% { transform: translateY(0px); }
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            h1 {
                font-size: 2.2rem;
            }
            
            h2 {
                font-size: 1.8rem;
            }
            
            .header-container {
                padding: 0.5rem;
            }
            
            nav {
                position: fixed;
                top: 80px;
                left: 0;
                width: 100%;
                background-color: var(--secondary);
                padding: 1rem;
                transform: translateY(-150%);
                transition: transform 0.3s ease;
                z-index: 999;
                box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
            }
            
            nav.active {
                transform: translateY(0);
            }
            
            nav ul {
                flex-direction: column;
            }
            
            nav ul li {
                margin: 0.5rem 0;
            }
            
            .burger {
                display: block;
            }
            
            .burger.active div:nth-child(1) {
                transform: rotate(-45deg) translate(-5px, 6px);
            }
            
            .burger.active div:nth-child(2) {
                opacity: 0;
            }
            
            .burger.active div:nth-child(3) {
                transform: rotate(45deg) translate(-5px, -6px);
            }
            
            .hero {
                padding: 4rem 1rem;
            }
            
            .hero h1 {
                font-size: 2.5rem;
            }
            
            .hero-btns {
                flex-direction: column;
                align-items: center;
            }
            
            .price-cards {
                flex-direction: column;
                align-items: center;
            }
            
            .price-card {
                max-width: 100%;
            }
            
            .footer-container {
                grid-template-columns: 1fr;
            }
            
            .cookie-banner {
                flex-direction: column;
                text-align: center;
            }
            
            .cookie-btns {
                width: 100%;
                justify-content: center;
            }
        }

