:root {
    --primary: #FF4D80;
    --secondary: #00F0FF;
    --accent: #FFD700;
    --dark: #1A1A2E;
    --light: #F5F5F5;
    --retro-pink: #FF6EC7;
    --retro-blue: #00C4FF;
    --retro-purple: #9D00FF;
    --font-main: 'Courier New', monospace;
    --font-heading: 'Arial Black', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    line-height: 1.6;
    color: var(--light);
    background-color: var(--dark);
    background-image: 
        radial-gradient(circle at 10% 20%, var(--retro-purple) 0%, transparent 20%),
        radial-gradient(circle at 90% 80%, var(--retro-blue) 0%, transparent 20%);
    overflow-x: hidden;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(26, 26, 46, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid var(--retro-pink);
}

header .container{
    display: flex;
    justify-content: space-between;
    align-items:center;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--retro-pink);
    text-decoration: none;
    font-weight: bold;
    letter-spacing: 2px;
    text-transform: uppercase;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li a {
    color: var(--light);
    text-decoration: none;
    padding: 1rem;
    display: block;
    transition: color 0.3s;
    font-weight: bold;
}

nav ul li a:hover {
    color: var(--retro-pink);
}

.burger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.burger-menu span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--light);
    margin: 5px 0;
    transition: all 0.3s;
}

.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    text-align: center;
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: var(--retro-pink);
    text-shadow: 0 0 10px rgba(255, 77, 128, 0.5);
    font-family: var(--font-heading);
    letter-spacing: 2px;
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: var(--accent);
}

.btn {
    display: inline-block;
    background: linear-gradient(45deg, var(--retro-pink), var(--retro-purple));
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(157, 0, 255, 0.4);
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(157, 0, 255, 0.6);
}

section {
    padding: 80px 0;
    position: relative;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--retro-blue);
    font-family: var(--font-heading);
    text-align: center;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--retro-pink), var(--retro-blue));
}

.about .content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.about .content p {
    flex: 1;
    font-size: 1.1rem;
    line-height: 1.8;
}

.about .content img {
    flex: 1;
    max-width: 50%;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.5s;
}

.about .content img:hover {
    transform: scale(1.05);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.product-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.product-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.product-card h3 {
    padding: 15px 20px 0;
    color: var(--retro-pink);
    font-size: 1.5rem;
}

.product-card p {
    padding: 10px 20px;
    color: var(--light);
}

.price {
    display: block;
    padding: 0 20px 15px;
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--accent);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.gallery-grid img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
    transition: all 0.3s;
    cursor: pointer;
}

.gallery-grid img:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.testimonials {
    background: rgba(0, 0, 0, 0.5);
    padding: 80px 0;
}

.slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
    height: 300px;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
}

.slide.active {
    opacity: 1;
}

blockquote {
    font-size: 1.5rem;
    font-style: italic;
    margin-bottom: 20px;
    color: var(--accent);
    position: relative;
}

blockquote::before,
blockquote::after {
    content: '"';
    font-size: 2rem;
    color: var(--retro-pink);
}

cite {
    font-weight: bold;
    color: var(--retro-blue);
}

.slider-nav {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: none;
    margin: 0 5px;
    cursor: pointer;
    transition: all 0.3s;
}

.slider-dot.active {
    background: var(--retro-pink);
    transform: scale(1.2);
}

.faq-item {
    margin-bottom: 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.faq-question {
    width: 100%;
    padding: 20px;
    text-align: left;
    background: none;
    border: none;
    color: var(--light);
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: bold;
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--retro-pink);
    transition: transform 0.3s;
}

.faq-question.active::after {
    content: '-';
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding: 0 20px;
    background: rgba(0, 0, 0, 0.2);
}

.faq-answer p {
    padding: 20px 0;
}

.contact form {
    max-width: 600px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--retro-blue);
    font-weight: bold;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(0, 0, 0, 0.3);
    border-radius: 5px;
    color: var(--light);
    font-family: var(--font-main);
}

.form-group textarea {
    height: 150px;
    resize: vertical;
}

.disclaimer {
    background: rgba(255, 77, 128, 0.1);
    padding: 20px 0;
    text-align: center;
    border-top: 1px solid var(--retro-pink);
    border-bottom: 1px solid var(--retro-pink);
}

footer {
    background: rgba(0, 0, 0, 0.7);
    padding: 60px 0 20px;
    border-top: 1px solid var(--retro-blue);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    color: var(--retro-pink);
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.footer-section p,
.footer-section address {
    color: var(--light);
    font-style: normal;
    margin-bottom: 15px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: var(--light);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: var(--retro-blue);
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--light);
}

.popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 2000;
    justify-content: center;
    align-items: center;
}

.popup-content {
    background: var(--dark);
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    max-width: 500px;
    position: relative;
    border: 2px solid var(--retro-pink);
}

.close-popup {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 2rem;
    color: var(--light);
    cursor: pointer;
    transition: color 0.3s;
}

.close-popup:hover {
    color: var(--retro-pink);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(26, 26, 46, 0.9);
    padding: 15px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    border-top: 1px solid var(--retro-blue);
}

.cookie-banner p {
    margin-right: 20px;
    color: var(--light);
}

.cookie-banner a {
    color: var(--retro-pink);
    text-decoration: none;
}

.cookie-banner .btn {
    padding: 8px 20px;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    nav ul {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(26, 26, 46, 0.95);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: left 0.3s;
    }

    nav ul.active {
        left: 0;
    }

    .burger-menu {
        display: block;
    }

    .burger-menu.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .burger-menu.active span:nth-child(2) {
        opacity: 0;
    }

    .burger-menu.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.2rem;
    }

    .about .content {
        flex-direction: column;
    }

    .about .content img {
        max-width: 100%;
    }

    h2 {
        font-size: 2rem;
    }

    .product-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .popup-content {
        width: 90%;
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .cookie-banner {
        flex-direction: column;
        text-align: center;
    }

    .cookie-banner p {
        margin-right: 0;
        margin-bottom: 10px;
    }
}