
:root {
    --primary: #6e2bff;
    --secondary: #c1ff00;
    --dark: #1a1a1a;
    --light: #f0f0f0;
    --accent: #ff2be2;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Courier New', monospace;
}
body {
    background-color: var(--dark);
    color: var(--light);
    line-height: 1.6;
    padding-top: 80px;
    overflow-x: hidden;
}
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(26, 26, 26, 0.9);
    backdrop-filter: blur(10px);
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    border-bottom: 2px solid var(--accent);
}
.logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 3px;
}
.logo span {
    color: var(--primary);
}
nav ul {
    display: flex;
    list-style: none;
}
nav ul li {
    margin-left: 2rem;
}
nav ul li a {
    color: var(--light);
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s;
    font-size: 0.9rem;
}
nav ul li a:hover {
    color: var(--secondary);
}
.burger {
    display: none;
    cursor: pointer;
}
.burger div {
    width: 25px;
    height: 3px;
    background-color: var(--light);
    margin: 5px;
    transition: all 0.3s ease;
}
.hero {
    height: 90vh;
    display: flex;
    align-items: center;
    padding: 0 2rem;
    background: linear-gradient(rgba(26, 26, 26, 0.7), rgba(26, 26, 26, 0.9)), 
                url('https://images.unsplash.com/photo-1492778297155-7be4c83960c7?w=500&auto=format&fit=crop&q=60&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxzZWFyY2h8MTl8fHRlYXxlbnwwfHwwfHx8MA%3D%3D') no-repeat center center/cover;
    position: relative;
    overflow: hidden;
}
.hero-content {
    max-width: 600px;
    z-index: 10;
}
.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 3px;
}
.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--light);
}
.btn {
    display: inline-block;
    background-color: var(--primary);
    color: var(--light);
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
}
.btn:hover {
    background-color: var(--secondary);
    color: var(--dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}
section {
    padding: 5rem 2rem;
}
.section-title {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 3px;
}
.about {
    background-color: var(--dark);
}
.about-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}
.about-text {
    flex: 1;
    min-width: 300px;
}
.about-text h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary);
}
.about-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}
.about-image {
    flex: 1;
    min-width: 300px;
    height: 400px;
    background: url('https://images.unsplash.com/photo-1558160074-4d7d8bdf4256?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80') no-repeat center center/cover;
    border-radius: 10px;
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.3);
}
.product {
    background-color: #2a2a2a;
}
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}
.product-card {
    background-color: var(--dark);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s;
}
.product-card:hover {
    transform: translateY(-10px);
}
.product-image {
    height: 250px;
    background-size: cover;
    background-position: center;
}
.product-info {
    padding: 1.5rem;
}
.product-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--secondary);
}
.product-info p {
    margin-bottom: 1rem;
    color: var(--light);
}
.price {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary);
    margin-bottom: 1rem;
}
.gallery {
    background-color: var(--dark);
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}
.gallery-item {
    height: 250px;
    overflow: hidden;
    border-radius: 10px;
    position: relative;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}
.gallery-item:hover img {
    transform: scale(1.1);
}
.testimonials {
    background-color: #2a2a2a;
}
.testimonial-slider {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}
.testimonial-slide {
    padding: 2rem;
    background-color: var(--dark);
    border-radius: 10px;
    text-align: center;
    display: none;
}
.testimonial-slide.active {
    display: block;
    animation: fadeIn 0.5s ease-in-out;
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
.testimonial-text {
    font-style: italic;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}
.testimonial-author {
    font-weight: bold;
    color: var(--secondary);
}
.slider-controls {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}
.slider-dot {
    width: 12px;
    height: 12px;
    background-color: #555;
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}
.slider-dot.active {
    background-color: var(--primary);
}
.faq {
    background-color: var(--dark);
}
.faq-item {
    margin-bottom: 1rem;
    border-bottom: 1px solid #444;
    padding-bottom: 1rem;
}
.faq-question {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--secondary);
    margin-bottom: 0.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.faq-answer {
    display: none;
    padding: 0.5rem 0;
}
.faq-answer.show {
    display: block;
}
.contact {
    background-color: #2a2a2a;
}
.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background-color: var(--dark);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}
.form-group {
    margin-bottom: 1.5rem;
}
.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--secondary);
    font-weight: bold;
}
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: none;
    border-radius: 5px;
    background-color: #333;
    color: var(--light);
    font-size: 1rem;
}
.form-group textarea {
    height: 150px;
    resize: none;
}
.popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: var(--dark);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    z-index: 2000;
    text-align: center;
    display: none;
    border: 2px solid var(--primary);
    max-width: 400px;
    width: 90%;
}
.popup.show {
    display: block;
    animation: fadeIn 0.3s ease-in-out;
}
.popup h3 {
    color: var(--secondary);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}
.popup p {
    margin-bottom: 1.5rem;
}
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    display: none;
}
.overlay.show {
    display: block;
}

.policy{
    max-width: 1000px;
    margin: 0px auto;
    display: grid;
    gap: 32px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--dark);
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    border-top: 2px solid var(--primary);
    transform: translateY(100%);
    transition: transform 0.3s ease-in-out;
}
.cookie-banner.show {
    transform: translateY(0);
}
.cookie-text {
    flex: 1;
    margin-right: 2rem;
}
.cookie-btn {
    background-color: var(--primary);
    color: var(--light);
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s;
}
.cookie-btn:hover {
    background-color: var(--secondary);
    color: var(--dark);
}
footer {
    background-color: var(--dark);
    padding: 3rem 2rem 1rem;
    border-top: 2px solid var(--primary);
}
.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 2rem;
}
.footer-column {
    flex: 1;
    min-width: 200px;
}
.footer-column h3 {
    color: var(--secondary);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}
.footer-column ul {
    list-style: none;
}
.footer-column ul li {
    margin-bottom: 0.5rem;
}
.footer-column ul li a {
    color: var(--light);
    text-decoration: none;
    transition: color 0.3s;
}
.footer-column ul li a:hover {
    color: var(--primary);
}
.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #444;
}
.disclaimer {
    font-size: 0.8rem;
    color: #888;
    margin-top: 2rem;
    text-align: center;
    max-width: 800px;
    margin: 20px auto;
    text-align: center;
}
@media (max-width: 768px) {
    nav ul {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: var(--dark);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: left 0.5s ease;
        z-index: 999;
    }
    nav ul.active {
        left: 0;
    }
    nav ul li {
        margin: 1rem 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 h1 {
        font-size: 2.5rem;
    }
    .section-title {
        font-size: 2rem;
    }
}
