/* --- Global Styles & Variables --- */
:root {
    --bg-dark: #0d0d1a;
    --bg-surface: #1a1a2e;
    --text-primary: #e0e0e0;
    --text-secondary: #a0a0c0;
    --neon-primary: #00f7ff; /* Cyan */
    --neon-secondary: #f400a1; /* Magenta */
    --font-heading: 'Orbitron', sans-serif;
    --font-body: 'Roboto', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    color: var(--text-primary);
    text-shadow: 0 0 5px var(--neon-primary), 0 0 10px rgba(0, 247, 255, 0.3);
}

h1 { font-size: 3rem; margin-bottom: 1rem; }
h2 { font-size: 2.5rem; text-align: center; margin-bottom: 2rem; }
p { color: var(--text-secondary); margin-bottom: 1rem; }
a { color: var(--neon-primary); text-decoration: none; transition: color 0.3s ease, text-shadow 0.3s ease; }
a:hover { color: #fff; text-shadow: 0 0 8px var(--neon-primary); }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

section {
    padding: 6rem 0;
}

.lead {
    text-align: center;
    max-width: 600px;
    margin: -1rem auto 3rem;
    font-size: 1.1rem;
}

/* --- Buttons --- */
.cta-button, .secondary-button {
    display: inline-block;
    padding: 12px 28px;
    font-family: var(--font-heading);
    text-transform: uppercase;
    border-radius: 5px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 700;
}

.cta-button {
    background-color: var(--neon-primary);
    color: var(--bg-dark);
    box-shadow: 0 0 10px var(--neon-primary), 0 0 20px rgba(0, 247, 255, 0.5);
}
.cta-button:hover {
    background-color: #fff;
    box-shadow: 0 0 15px var(--neon-primary), 0 0 30px rgba(0, 247, 255, 0.7);
    transform: translateY(-2px);
}

.secondary-button {
    background-color: transparent;
    color: var(--neon-primary);
    border-color: var(--neon-primary);
}
.secondary-button:hover {
    background-color: var(--neon-primary);
    color: var(--bg-dark);
}

/* --- Header --- */
#header {
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(13, 13, 26, 0.8);
    backdrop-filter: blur(10px);
    transition: background 0.3s ease, padding 0.3s ease;
    padding: 1rem 0;
}
#header.scrolled {
    background: var(--bg-dark);
    box-shadow: 0 2px 10px rgba(0, 247, 255, 0.1);
}

#header nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    font-weight: 500;
    font-size: 1rem;
}

.nav-actions { display: flex; align-items: center; gap: 1.5rem; }
.social-icons { display: flex; gap: 1rem; }
.social-icons i { font-size: 1.2rem; }
.burger-menu { display: none; background: none; border: none; color: var(--text-primary); font-size: 1.5rem; cursor: pointer; }

/* --- Hero Section --- */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 0;
}

.parallax-bg {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(45deg, rgba(244, 0, 161, 0.2), rgba(0, 247, 255, 0.2), var(--bg-dark) 60%);
    background-size: 400% 400%;
    animation: gradient-flow 15s ease infinite;
}

@keyframes gradient-flow {
	0% { background-position: 0% 50%; }
	50% { background-position: 100% 50%; }
	100% { background-position: 0% 50%; }
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.hero-text { max-width: 50%; }
.hero-buttons { margin-top: 2rem; display: flex; gap: 1rem; }
.hero-image-placeholder img { max-width: 100%; animation: float 6s ease-in-out infinite; }

@keyframes float {
	0% { transform: translateY(0px); }
	50% { transform: translateY(-20px); }
	100% { transform: translateY(0px); }
}

/* --- Featured Collection --- */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 2rem;
}

.product-card {
    background: var(--bg-surface);
    border: 1px solid rgba(0, 247, 255, 0.2);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 20px var(--neon-primary), 0 0 30px rgba(0, 247, 255, 0.5);
}

.product-image { position: relative; }
.product-image img { width: 100%; display: block; }

.badge {
    position: absolute;
    top: 10px; left: 10px;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--bg-dark);
}
.badge.new { background-color: var(--neon-primary); }
.badge.bestseller { background-color: var(--neon-secondary); }

.product-info { padding: 1.5rem; }
.product-info h3 { margin-bottom: 0.5rem; }
.product-rating { color: #f3ca20; margin-bottom: 0.5rem; }
.product-price { font-size: 1.5rem; font-weight: 700; margin-bottom: 1rem; color: var(--neon-primary); }
.product-info .cta-button { width: 100%; }

/* --- Why Choose Us --- */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    text-align: center;
}
.benefit-item i {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--neon-primary);
    text-shadow: 0 0 10px var(--neon-primary);
}
.benefit-item h3 { margin-bottom: 0.5rem; }

/* --- Size & Materials --- */
.sizing-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}
table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1rem;
}
th, td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid rgba(0, 247, 255, 0.2);
}
th { font-family: var(--font-heading); color: var(--neon-primary); }
.care-icons span { display: block; margin-bottom: 0.5rem; }
.care-icons i { margin-right: 10px; color: var(--neon-primary); }

/* --- Shipping & Returns --- */
#shipping { background: var(--bg-surface); }
.shipping-info {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    border: 1px solid var(--neon-secondary);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(244, 0, 161, 0.4);
}
.shipping-info h3 { color: var(--neon-secondary); }

/* --- About The Brand --- */
.about-content {
    display: flex;
    align-items: center;
    gap: 3rem;
}
.about-image { flex: 1; }
.about-image img { max-width: 100%; border-radius: 8px; }
.about-text { flex: 1.5; }

/* --- Customer Reviews --- */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}
.review-card {
    background: var(--bg-surface);
    padding: 2rem;
    border-left: 4px solid var(--neon-secondary);
    border-radius: 5px;
}
.review-rating { color: #f3ca20; font-size: 1.2rem; margin-bottom: 1rem; }
.review-card h4 { margin-top: 1rem; color: var(--text-primary); text-shadow: none; }
.reviews-cta { text-align: center; }

/* --- FAQ --- */
.faq-accordion { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid rgba(0, 247, 255, 0.2); }
.faq-question {
    width: 100%;
    background: none;
    border: none;
    color: var(--text-primary);
    font-family: var(--font-heading);
    font-size: 1.2rem;
    text-align: left;
    padding: 1.5rem 0;
    cursor: pointer;
    position: relative;
}
.faq-question::after {
    content: '\f078'; /* Font Awesome chevron-down */
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    right: 0;
    transition: transform 0.3s ease;
}
.faq-question.active::after { transform: rotate(180deg); }
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
}
.faq-answer p { padding-bottom: 1.5rem; }

/* --- Contact Section --- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}
.contact-info ul { list-style: none; margin-top: 2rem; }
.contact-info li { display: flex; align-items: start; margin-bottom: 1rem; }
.contact-info i { font-size: 1.2rem; color: var(--neon-primary); margin-right: 1rem; margin-top: 5px; }
.map-placeholder { margin-top: 2rem; }
.map-placeholder img { width: 100%; border-radius: 5px; }

.form-group { margin-bottom: 1.5rem; }
.form-group label { display: block; margin-bottom: 0.5rem; font-weight: 500; }
input[type="text"], input[type="email"], textarea {
    width: 100%;
    padding: 12px;
    background: var(--bg-surface);
    border: 1px solid rgba(0, 247, 255, 0.3);
    border-radius: 4px;
    color: var(--text-primary);
    font-family: var(--font-body);
}
input:focus, textarea:focus {
    outline: none;
    border-color: var(--neon-primary);
    box-shadow: 0 0 8px rgba(0, 247, 255, 0.5);
}
#form-status { margin-top: 1rem; font-weight: 500; }
.success { color: var(--neon-primary); }
.error { color: var(--neon-secondary); }

/* --- Privacy Policy --- */
#privacy { background: var(--bg-surface); }
#privacy p { max-width: 800px; margin-left: auto; margin-right: auto; text-align: center; }

/* --- Footer --- */
footer {
    background: var(--bg-surface);
    padding-top: 4rem;
}
.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding-bottom: 3rem;
}
.footer-col h4 {
    font-family: var(--font-heading);
    margin-bottom: 1rem;
    color: var(--neon-primary);
    text-shadow: none;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.5rem; }
.footer-col a { color: var(--text-secondary); }
.footer-col a:hover { color: var(--text-primary); }
.footer-col small { font-size: 0.8rem; opacity: 0.7; }
.footer-bottom {
    text-align: center;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(0, 247, 255, 0.2);
}

/* --- Cookie Banner --- */
#cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--bg-surface);
    padding: 1rem;
    display: none; /* Initially hidden */
    align-items: center;
    justify-content: center;
    gap: 1rem;
    z-index: 2000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.3);
    text-align: center;
}
#cookie-banner p { margin-bottom: 0; }
#cookie-accept-btn {
    padding: 8px 16px;
    background: var(--neon-primary);
    color: var(--bg-dark);
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

/* --- Animations --- */
.section-fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.section-fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* --- Responsiveness --- */
@media (max-width: 992px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    .hero-content { flex-direction: column; text-align: center; }
    .hero-text { max-width: 100%; }
    .hero-image-placeholder { margin-top: 2rem; }
    .about-content { flex-direction: column; }
    .sizing-content, .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    section { padding: 4rem 0; }
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: var(--bg-dark);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.4s ease-in-out;
        gap: 2.5rem;
    }
    .nav-menu.active { right: 0; }
    .nav-menu a { font-size: 1.5rem; }
    .nav-actions .cta-button, .nav-actions .social-icons { display: none; }
    .burger-menu { display: block; z-index: 1001; }
    .burger-menu.active i::before { content: '\f00d'; /* fas fa-times */ }
}