/* CSS Variables - Urban Volt Theme */
:root {
    --primary-color: #CCFF00;
    /* Electric Volt Green */
    --primary-hover: #b3e600;
    --bg-color: #0f0f0f;
    /* Deep Charcoal */
    --card-bg: #1a1a1a;
    --text-color: #e0e0e0;
    --text-muted: #888888;
    --white: #ffffff;
    --black: #000000;
    --border-color: #333333;
    --transition-speed: 0.3s;
    --font-heading: 'Oswald', sans-serif;
    /* Tall, Bold Industrial Font */
    --font-body: 'Open Sans', sans-serif;
    --container-width: 1200px;
    --shadow-neon: 0 0 20px rgba(204, 255, 0, 0.2);
}

/* Reset and Base Styles - Class Based Only */
.root {
    scroll-behavior: smooth;
    background-color: var(--bg-color);
}

.page-body {
    margin: 0;
    padding: 0;
    font-family: var(--font-body);
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--bg-color);
    overflow-x: hidden;
    /* Custom Scrollbar */
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-color);
}

::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-color);
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography Classes */
.main-heading,
.hero-title,
.section-title,
.feature-title,
.footer-heading,
.modal-title,
.modal-heading,
.faq-question {
    font-family: var(--font-heading);
    color: var(--white);
    text-transform: uppercase;
    margin-top: 0;
}

.hero-title {
    font-size: 5rem;
    line-height: 0.9;
    letter-spacing: -2px;
    margin-bottom: 20px;
}

.hero-title span {
    color: var(--primary-color);
    display: block;
}

.section-title {
    font-size: 3.5rem;
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    padding-bottom: 20px;
    letter-spacing: 1px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 6px;
    background-color: var(--primary-color);
    skew: -10deg;
    /* Angled line */
}

.nav-link,
.footer-link,
.btn,
.logo-link {
    text-decoration: none;
    color: inherit;
    transition: all var(--transition-speed);
}

.nav-list,
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sneaker-img {
    max-width: 100%;
    height: auto;
    display: block;
    filter: grayscale(100%) contrast(120%);
    transition: filter 0.5s;
}

.sneaker-img:hover {
    filter: grayscale(0%) contrast(100%) drop-shadow(0 0 30px rgba(204, 255, 0, 0.3));
}

/* Button Classes */
.btn {
    display: inline-block;
    padding: 16px 40px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    text-align: center;
    border: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    clip-path: polygon(10% 0, 100% 0, 100% 80%, 90% 100%, 0 100%, 0 20%);
    /* futuristic shape */
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--black);
    font-weight: 800;
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translate(-3px, -3px);
    box-shadow: 5px 5px 0px rgba(255, 255, 255, 0.2);
}

.btn-secondary {
    background-color: transparent;
    border: 2px solid var(--white);
    color: var(--white);
    clip-path: none;
    border-radius: 0;
}

.btn-secondary:hover {
    background-color: var(--white);
    color: var(--black);
}

.btn-lg {
    font-size: 1.2rem;
    padding: 20px 50px;
}

.btn-sm {
    padding: 8px 16px;
    font-size: 0.9rem;
    clip-path: none;
    border-radius: 4px;
}

/* Loader Classes */
.loader-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--black);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.loader-text {
    color: var(--primary-color);
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: -2px;
    animation: glitch 1s infinite alternate;
}

@keyframes glitch {
    0% {
        transform: skew(0deg);
        opacity: 1;
    }

    20% {
        transform: skew(-10deg);
        opacity: 0.8;
    }

    40% {
        transform: skew(10deg);
        opacity: 1;
    }

    100% {
        transform: skew(0deg);
        opacity: 1;
    }
}

/* Top Disclaimer */
.top-disclaimer {
    background-color: var(--primary-color);
    color: var(--black);
    font-weight: 700;
    font-size: 0.8rem;
    text-align: center;
    padding: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Header Classes */
.header {
    background-color: rgba(15, 15, 15, 0.95);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 10px 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo-link {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: -1px;
    border: 2px solid var(--white);
    padding: 5px 10px;
}

.logo-link:hover {
    background-color: var(--white);
    color: var(--black);
}

.nav-menu {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    gap: 40px;
}

.nav-link {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 1.1rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-link:hover {
    color: var(--primary-color);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 25px;
}

/* Hamburger Classes */
.hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
    align-items: flex-end;
}

.bar {
    width: 35px;
    height: 3px;
    background-color: var(--white);
    transition: all 0.3s;
}

.bar:nth-child(2) {
    width: 25px;
}

.hamburger:hover .bar {
    background-color: var(--primary-color);
    width: 35px;
}

.close-menu {
    display: none;
    position: absolute;
    top: 25px;
    right: 25px;
    font-size: 3rem;
    cursor: pointer;
    color: var(--white);
    transition: color 0.3s;
}

.close-menu:hover {
    color: var(--primary-color);
}


/* Hero Classes */
.hero {
    background-color: var(--bg-color);
    color: var(--white);
    padding: 100px 0;
    position: relative;
    border-bottom: 1px solid var(--border-color);
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.hero-content {
    flex: 1;
    z-index: 2;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 40px;
    color: var(--text-muted);
    max-width: 500px;
    border-left: 3px solid var(--primary-color);
    padding-left: 20px;
}

.hero-image-wrapper {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
}

.hero-image-wrapper::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(204, 255, 0, 0.15) 0%, transparent 70%);
    z-index: -1;
}

/* Section Classes */
.section {
    padding: 100px 0;
}

/* About Section */
.about-section {
    background-color: var(--bg-color);
}

.section-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.section-text {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 30px;
    color: var(--text-muted);
}

/* Why Us Section */
.why-us-section {
    background-color: #151515;
    background-image: linear-gradient(0deg, transparent 24%, rgba(255, 255, 255, .03) 25%, rgba(255, 255, 255, .03) 26%, transparent 27%, transparent 74%, rgba(255, 255, 255, .03) 75%, rgba(255, 255, 255, .03) 76%, transparent 77%, transparent), linear-gradient(90deg, transparent 24%, rgba(255, 255, 255, .03) 25%, rgba(255, 255, 255, .03) 26%, transparent 27%, transparent 74%, rgba(255, 255, 255, .03) 75%, rgba(255, 255, 255, .03) 76%, transparent 77%, transparent);
    background-size: 50px 50px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.feature-card {
    background: var(--card-bg);
    padding: 50px 30px;
    border: 1px solid var(--border-color);
    text-align: center;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 0;
    background-color: var(--primary-color);
    transition: height 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: #555;
}

.feature-card:hover::before {
    height: 100%;
}

.feature-title {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.feature-desc {
    color: var(--text-muted);
}

/* Testimonials Section */
.testimonials-section {
    background-color: var(--bg-color);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.testimonial-card {
    background: #111;
    padding: 40px;
    border-left: 4px solid var(--primary-color);
}

.testimonial-text {
    font-size: 1.1rem;
    font-style: italic;
    color: #ccc;
    margin-bottom: 25px;
    font-family: var(--font-heading);
    letter-spacing: 0.5px;
}

.testimonial-author {
    font-weight: 700;
    color: var(--primary-color);
    text-transform: uppercase;
    font-size: 0.9rem;
}

/* FAQ Section */
.faq-section {
    background-color: #151515;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--card-bg);
    margin-bottom: 20px;
    padding: 25px;
    border: 1px solid var(--border-color);
}

.faq-question {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--white);
    cursor: pointer;
}

.faq-answer {
    color: var(--text-muted);
}

/* Footer Classes */
.footer {
    background-color: #050505;
    color: #666;
    padding: 80px 0 30px;
    font-size: 0.9rem;
    border-top: 5px solid var(--primary-color);
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 60px;
    margin-bottom: 60px;
}

.footer-heading {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 30px;
}

.footer-text {
    margin-bottom: 15px;
    color: #888;
}

.footer-link {
    color: #888;
}

.footer-link:hover {
    color: var(--primary-color);
    margin-left: 5px;
}

.footer-link-item {
    margin-bottom: 15px;
}

.footer-disclaimer-box {
    background-color: #111;
    padding: 20px;
    margin: 0 20px 40px;
    border: 1px solid #333;
    color: #555;
}

.footer-disclaimer-text {
    font-size: 0.75rem;
    text-align: center;
    margin: 0;
    text-transform: uppercase;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #222;
    color: #444;
}

/* Cookie Popup Classes */
.cookie-popup {
    position: fixed;
    bottom: -200px;
    right: 20px;
    left: auto;
    width: 350px;
    max-width: 90vw;
    /* Ensure it fits on smaller screens */
    background-color: var(--white);
    color: var(--black);
    padding: 30px;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
    transition: bottom 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 2147483647;
    /* Max z-index to stay on top of everything */
    border-top: 5px solid var(--primary-color);
    border-radius: 4px;
}

.cookie-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cookie-text {
    margin: 0;
    font-size: 0.95rem;
    color: #333;
    line-height: 1.5;
}

.cookie-actions {
    display: flex;
    gap: 10px;
    width: 100%;
}

.cookie-actions button {
    flex: 1;
}

.cookie-popup.show {
    bottom: 30px;
}

/* Modal Classes */
.modal {
    display: none;
    position: fixed;
    z-index: 20000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow-y: auto;
    background-color: rgba(0, 0, 0, 0.95);
    /* Very dark overlay */
    align-items: center;
    justify-content: center;
}

.modal.show {
    display: flex;
}

.text-left-content {
    text-align: left !important;
}

.modal-content {
    background-color: #151515;
    padding: 60px;
    width: 90%;
    max-width: 600px;
    position: relative;
    text-align: center;
    border: 1px solid #333;
    color: var(--text-muted);
}

.modal-title {
    color: var(--white);
    margin-bottom: 40px;
    font-size: 2rem;
    border-bottom: 1px solid #333;
    padding-bottom: 20px;
}

.modal-heading {
    color: var(--primary-color);
    margin-top: 30px;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.modal-text {
    margin-bottom: 15px;
    line-height: 1.7;
}

.close-modal {
    color: #555;
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 40px;
    transition: color 0.3s;
    line-height: 1;
    z-index: 10;
}

.close-modal:hover {
    color: var(--primary-color);
}

/* Mobile Responsiveness */
@media (max-width: 1024px) {
    .container {
        max-width: 90%;
    }

    .hero-title {
        font-size: 3.5rem;
    }
}

@media (max-width: 768px) {
    .header-container {
        padding: 0 20px;
    }

    .header-actions {
        gap: 15px;
    }

    /* Fix Shop Now Button on Mobile */
    .header-actions .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
        clip-path: none;
        /* Simplify shape for mobile */
        border-radius: 4px;
    }

    .logo-link {
        font-size: 1.5rem;
    }

    .hamburger {
        display: flex;
        z-index: 1001;
        /* Ensure above other elements */
    }

    /* Mobile Menu - Full Width for 'Elite' feel */
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        /* Full width to prevent side gaps */
        height: 100vh;
        background-color: #000;
        flex-direction: column;
        justify-content: center;
        transition: right 0.4s ease;
        border-left: none;
        /* No border needed for full width */
        z-index: 2000;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }

    .nav-link {
        color: var(--white);
        font-size: 2rem;
        /* Larger font for full screen menu */
        font-weight: 700;
    }

    .close-menu {
        display: block;
        position: absolute;
        top: 20px;
        right: 20px;
        font-size: 3rem;
        color: var(--white);
        z-index: 2001;
    }

    /* Mobile Spacing */
    .section,
    .hero {
        padding: 60px 0;
    }

    .hero-container {
        flex-direction: column-reverse;
        text-align: center;
    }

    .hero-subtitle {
        margin: 0 auto 40px;
        border: none;
        padding: 0;
    }

    .hero-title {
        font-size: 3rem;
    }

    /* Mobile Modal Adjustment */
    .modal {
        align-items: flex-start;
        padding-top: 0;
        padding-bottom: 0;
    }

    .modal-content {
        padding: 30px;
        width: 100%;
        height: 100%;
        max-width: none;
        border: none;
        border-radius: 0;
        margin: 0;
        overflow-y: auto;
    }

    .close-modal {
        top: 20px;
        right: 20px;
        color: var(--primary-color);
    }

    .cookie-popup {
        right: 0;
        width: 100%;
        bottom: -200px;
        left: 0;
        padding: 20px;
        border-top: 2px solid var(--primary-color);
        background-color: #fff;
        /* Ensure contrast */
        z-index: 9999;
        /* Ensure high z-index */
        box-sizing: border-box;
        /* Prevent padding from increasing width */
    }

    .cookie-popup.show {
        bottom: 0;
    }
}