/* --- Variables & Reset --- */
:root {
    --color-bg-dark: #1a0515;
    --color-bg-light: #2c0a22;
    --color-red: #900C3F;       /* Deep Red */
    --color-purple: #581845;    /* Vibrant Purple */
    --color-aqua: #00FFFF;      /* Cool Aqua */
    --color-mint: #98FF98;      /* Mint Green */
    --color-white: #ffffff;
    --color-text-muted: #e0e0e0;
    
    --font-main: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    --transition-speed: 0.3s;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    color: var(--color-white);
    background: linear-gradient(-45deg, var(--color-bg-dark), var(--color-purple), var(--color-red), #0f2027);
    background-size: 400% 400%;
    animation: gradientBG 15s ease infinite;
    line-height: 1.6;
    overflow-x: hidden;
}

@keyframes gradientBG {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* --- Utility Classes --- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 80px 0;
}

.section-heading {
    font-size: 2.5rem;
    color: var(--color-mint);
    text-align: center;
    margin-bottom: 50px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: bold;
    text-transform: uppercase;
    transition: all var(--transition-speed);
    cursor: pointer;
    border: none;
}

.btn-shop, .btn-hero, .btn-shop-mobile {
    background-color: var(--color-aqua);
    color: var(--color-bg-dark);
    box-shadow: 0 4px 15px rgba(0, 255, 255, 0.3);
}

.btn-shop:hover, .btn-hero:hover, .btn-shop-mobile:hover {
    background-color: var(--color-mint);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(152, 255, 152, 0.4);
}

/* --- Loader --- */
.page-loader {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background-color: var(--color-bg-dark);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease;
}

.loader-content {
    text-align: center;
}

.loader-circle {
    width: 60px;
    height: 60px;
    border: 5px solid rgba(255,255,255,0.2);
    border-top: 5px solid var(--color-aqua);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

.loader-text {
    font-size: 1.2rem;
    letter-spacing: 3px;
    color: var(--color-aqua);
    animation: blink 1.5s infinite;
}

@keyframes spin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.5; } }

/* --- Top Disclaimer Bar --- */
.ad-disclaimer-bar {
    background-color: rgba(0,0,0,0.4);
    text-align: center;
    padding: 8px;
    font-size: 0.8rem;
    color: #ccc;
}

/* --- Header --- */
.main-header {
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    background-color: rgba(26, 5, 21, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--color-white);
    text-transform: uppercase;
    letter-spacing: 2px;
    background: linear-gradient(to right, var(--color-aqua), var(--color-mint));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: logoGlow 3s infinite alternate;
}

@keyframes logoGlow {
    from { text-shadow: 0 0 10px rgba(0,255,255,0.2); }
    to { text-shadow: 0 0 20px rgba(0,255,255,0.6); }
}

.nav-list {
    display: flex;
    gap: 30px;
}

.nav-link {
    color: var(--color-white);
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--color-aqua);
    transition: width 0.3s;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link:hover {
    color: var(--color-aqua);
}

.hamburger-menu {
    display: none;
    background: none;
    border: none;
    color: var(--color-white);
    font-size: 1.8rem;
    cursor: pointer;
}

/* --- Mobile Nav --- */
.mobile-nav-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.7);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
}

.mobile-nav {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 75%;
    background-color: var(--color-bg-dark);
    z-index: 999;
    transform: translateX(-100%);
    transition: transform 0.4s ease-in-out;
    padding: 20px;
    border-right: 1px solid var(--color-purple);
}

.mobile-nav.active {
    transform: translateX(0);
}

.mobile-nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.mobile-brand {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--color-aqua);
}

.close-menu {
    background: none;
    border: none;
    color: var(--color-white);
    font-size: 1.8rem;
    cursor: pointer;
}

.mobile-nav-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.m-nav-link {
    font-size: 1.2rem;
    color: var(--color-white);
    display: block;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.btn-shop-mobile {
    width: 100%;
    text-align: center;
    margin-top: 20px;
}

/* --- Hero Section --- */
.hero-section {
    min-height: 90vh;
    display: flex;
    align-items: center;
    padding: 40px 0;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.hero-title {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 20px;
    background: linear-gradient(to right, #fff, #ccc);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: var(--color-text-muted);
    max-width: 500px;
}

.hero-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
}

.product-image-anim {
    max-width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    animation: float 6s ease-in-out infinite;
    border: 2px solid rgba(255,255,255,0.1);
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

/* --- About Section --- */
.about-content {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.about-text {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

/* --- Why Us --- */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    background: rgba(88, 24, 69, 0.3);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s;
    border: 1px solid rgba(255,255,255,0.05);
}

.feature-card:hover {
    transform: translateY(-10px);
    background: rgba(88, 24, 69, 0.5);
}

.feature-icon {
    font-size: 3rem;
    color: var(--color-aqua);
    margin-bottom: 20px;
}

.feature-title {
    margin-bottom: 15px;
    font-size: 1.3rem;
    color: var(--color-mint);
}

/* --- Testimonials --- */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: rgba(255,255,255,0.05);
    padding: 30px;
    border-radius: 15px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.avatar-circle {
    width: 50px;
    height: 50px;
    background-color: var(--color-red);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.review-text {
    font-style: italic;
    margin-bottom: 10px;
    color: #ddd;
}

.review-author {
    color: var(--color-aqua);
    font-weight: bold;
}

/* --- FAQ --- */
.faq-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 15px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.faq-question {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 15px 0;
    color: var(--color-white);
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question i {
    transition: transform 0.3s;
    color: var(--color-aqua);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding: 0;
    color: #ccc;
}

.faq-item.active .faq-answer {
    padding-bottom: 20px;
}

/* --- Footer --- */
.main-footer {
    background-color: #0b0b0b;
    color: var(--color-white);
    padding: 60px 0 20px;
    margin-top: 50px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-heading {
    font-size: 1.2rem;
    color: var(--color-mint);
    margin-bottom: 20px;
    text-transform: uppercase;
}

.footer-info, .footer-link, .footer-btn-link {
    color: #aaa;
    margin-bottom: 10px;
    display: block;
    transition: color 0.3s;
    font-size: 0.95rem;
}

.footer-link:hover, .footer-btn-link:hover {
    color: var(--color-aqua);
}

.footer-btn-link {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    text-align: left;
    font-family: inherit;
}

.footer-disclaimer-box {
    border-top: 1px solid #333;
    padding: 20px 20px;
    margin: 0 auto;
    max-width: 1200px;
    text-align: center;
}

.footer-disclaimer-text {
    font-size: 0.75rem;
    color: #666;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    font-size: 0.9rem;
    color: #555;
}

/* --- Modals --- */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.8);
    align-items: center;
    justify-content: center;
}

.modal-content {
    background-color: #1a1a1a;
    padding: 40px;
    border-radius: 10px;
    width: 90%;
    max-width: 600px;
    position: relative;
    border: 1px solid var(--color-purple);
    color: #fff;
}

.close-modal {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 2rem;
    cursor: pointer;
    color: var(--color-red);
}

.modal-title {
    color: var(--color-aqua);
    margin-bottom: 20px;
    border-bottom: 1px solid #333;
    padding-bottom: 10px;
}

.modal-body-text p {
    margin-bottom: 10px;
    font-size: 0.9rem;
    color: #ccc;
}

/* --- Cookie Banner --- */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(255,255,255,0.95);
    color: #000;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.5);
    z-index: 3000;
    width: 90%;
    max-width: 500px;
    display: none; /* hidden initially, shown via JS */
    text-align: center;
}

.cookie-text {
    margin-bottom: 15px;
}

.cookie-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.btn-cookie-accept {
    background-color: var(--color-red);
    color: white;
    border: none;
    padding: 8px 20px;
    border-radius: 5px;
    cursor: pointer;
}

.btn-cookie-reject {
    background-color: #ccc;
    color: #333;
    border: none;
    padding: 8px 20px;
    border-radius: 5px;
    cursor: pointer;
}

/* --- Media Queries --- */
@media (max-width: 768px) {
    .desktop-nav {
        display: none;
    }
    
    .hamburger-menu {
        display: block;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        margin: 0 auto 30px;
    }
    
    .product-image-anim {
        width: 80%;
    }
}