@charset "UTF-8";
/*
Theme Name: FiveMRides Miami Vice Child
Template: astra
Author: FiveMRides
Version: 1.1.9
Description: Ultra-fast Miami Vice themed WooCommerce child for FiveM cars shop
*/

:root {
    --bg-primary: #0a0a1a;
    --bg-secondary: #0f0f24;
    --neon-pink: #ff00ff;
    --neon-cyan: #00ffff;
    --neon-purple: #8a2be2;
    --text-primary: #ffffff;
    --text-muted: #b0b0b0;
    --gradient-vice: linear-gradient(135deg, #0a0a1a 0%, #1a0a2a 40%, #0a1a2a 100%);
    --font-heading: 'Rajdhani', sans-serif;
    --font-body: 'Inter', sans-serif;
    --shadow-neon-pink: 0 0 10px rgba(255, 0, 255, 0.5), 0 0 20px rgba(255, 0, 255, 0.3);
    --shadow-neon-cyan: 0 0 10px rgba(0, 255, 255, 0.5), 0 0 20px rgba(0, 255, 255, 0.3);
}

/* Reset & Base */
*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    background: var(--bg-primary);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    margin: 0;
    overflow-x: hidden;
    position: relative;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

a {
    color: var(--neon-cyan);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--neon-pink);
    text-shadow: 0 0 8px var(--neon-pink);
}

/* Header Styles */
.site-header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(10, 10, 26, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0.5rem 2rem;
}

.site-header.scrolled {
    background: rgba(5, 5, 15, 0.98);
    padding: 0.2rem 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5), 0 0 10px rgba(0, 255, 255, 0.1);
    border-bottom: 1px solid var(--neon-cyan);
}

.site-branding h1 {
    margin: 0;
    line-height: 1;
}

.logo-icon {
    height: 50px;
    width: auto;
    display: block;
}

.main-navigation ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
}

.main-navigation ul li {
    margin-left: 1.5rem;
    position: relative;
}

.main-navigation a {
    color: #fff;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 1rem;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.main-navigation a:hover {
    color: #ff00ff;
    text-shadow: 0 0 8px #ff00ff;
}

/* Dropdown Styles - FULL NEON */
.main-navigation ul li ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #000;
    /* Solid black for contrast */
    border: 2px solid var(--neon-pink);
    /* Thicker neon border */
    min-width: 220px;
    /* Slightly wider */
    flex-direction: column;
    padding: 0;
    box-shadow: 0 0 20px var(--neon-pink), inset 0 0 10px rgba(255, 0, 255, 0.2);
    /* CRAZY GLOW */
    z-index: 9999;
    border-radius: 0 0 8px 8px;
}

.main-navigation ul li:hover ul {
    display: flex;
}

.main-navigation ul li ul li {
    margin: 0;
}

.main-navigation ul li ul li a {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
}

.main-navigation ul li ul li a:hover {
    background: rgba(255, 0, 255, 0.1);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.cart-icon,
.search-icon {
    font-size: 1.2rem;
    color: #fff;
    text-decoration: none;
    position: relative;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #ff00ff;
    color: #fff;
    font-size: 0.7rem;
    padding: 2px 5px;
    border-radius: 50%;
    font-weight: bold;
}

.mobile-menu-toggle {
    display: none;
    font-size: 1.5rem;
    color: #fff;
    cursor: pointer;
}

/* Hero Section */
.hero-section {
    padding: 150px 20px 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: none;
}

.hero-bg,
.hero-bg-img,
.hero-overlay {
    position: absolute;
    inset: 0;
}

.hero-bg {
    z-index: 0;
    display: block;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center bottom;
    display: block;
}

.hero-overlay {
    background: linear-gradient(rgba(10, 10, 26, 0.6), rgba(10, 10, 26, 0.4));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--neon-pink), var(--neon-cyan));
    box-shadow: 0 0 15px var(--neon-pink);
}

.hero-title {
    font-size: 4rem;
    background: linear-gradient(to right, var(--neon-pink), var(--neon-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 20px rgba(255, 0, 255, 0.3);
    margin-bottom: 1rem;
}

/* Category Grid */
.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding: 4rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.category-card {
    background: var(--bg-secondary);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.4;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.category-card:hover::before {
    opacity: 0.7;
}

.category-card h3 {
    position: relative;
    z-index: 1;
    text-shadow: 0 0 10px #000;
    font-size: 1.5rem;
}

.cat-cars::before {
    background-image: url('assets/images/cat-cars.png');
    background-image: image-set(
        url('assets/images/cat-cars.webp') type('image/webp'),
        url('assets/images/cat-cars.png') type('image/png')
    );
}

.cat-bikes::before {
    background-image: url('assets/images/cat-bikes.png');
    background-image: image-set(
        url('assets/images/cat-bikes.webp') type('image/webp'),
        url('assets/images/cat-bikes.png') type('image/png')
    );
}

.cat-packs::before {
    background-image: url('assets/images/cat-packs.png');
    background-image: image-set(
        url('assets/images/cat-packs.webp') type('image/webp'),
        url('assets/images/cat-packs.png') type('image/png')
    );
}

.cat-maps::before {
    background-image: url('assets/images/cat-maps.png');
    background-image: image-set(
        url('assets/images/cat-maps.webp') type('image/webp'),
        url('assets/images/cat-maps.png') type('image/png')
    );
}

.cat-peds::before {
    background-image: url('assets/images/cat-peds.png');
    background-image: image-set(
        url('assets/images/cat-peds.webp') type('image/webp'),
        url('assets/images/cat-peds.png') type('image/png')
    );
}

.cat-custom::before {
    background-image: url('assets/images/cat-custom.png');
    background-image: image-set(
        url('assets/images/cat-custom.webp') type('image/webp'),
        url('assets/images/cat-custom.png') type('image/png')
    );
}

.cat-trucks::before {
    background-image: url('assets/images/cat-trucks-v2.png') !important;
    background-image: image-set(
        url('assets/images/cat-trucks-v2.webp') type('image/webp'),
        url('assets/images/cat-trucks-v2.png') type('image/png')
    ) !important;
    background-color: #1a1a1a;
    /* Fallback */
    background-position: center bottom !important;
    background-size: cover !important;
}

.cat-vanilla::before {
    background-image: url('assets/images/cat-vanilla-v2.png') !important;
    background-image: image-set(
        url('assets/images/cat-vanilla-v2.webp') type('image/webp'),
        url('assets/images/cat-vanilla-v2.png') type('image/png')
    ) !important;
    background-color: #1a1a1a;
    /* Fallback */
    background-position: center bottom !important;
    background-size: cover !important;
}

.category-card:hover {
    transform: translateY(-5px);
    border-color: var(--neon-cyan);
    box-shadow: var(--shadow-neon-cyan);
}

/* Buttons */
.btn-neon {
    display: inline-block;
    padding: 1rem 2rem;
    background: transparent;
    border: 2px solid var(--neon-pink);
    color: var(--neon-pink);
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    z-index: 1;
    overflow: hidden;
    transition: all 0.3s ease;
}

.btn-neon:hover {
    background: var(--neon-pink);
    color: #fff;
    box-shadow: var(--shadow-neon-pink);
    transform: scale(1.05);
}

/* FORCE HIDE GARBAGE & DUPLICATES */
.onsale,
.ast-onsale-card,
.ast-loop-product__category,
.ast-woo-product-category,
.astra-shop-summary-wrap .ast-loop-product__category,
.astra-shop-thumbnail-wrap .onsale {
    display: none !important;
}

/* KILL THE BUTTON ON THE IMAGE */
.woocommerce ul.products li.product .astra-shop-thumbnail-wrap .button,
.woocommerce ul.products li.product .astra-shop-thumbnail-wrap .add_to_cart_button,
.woocommerce ul.products li.product .ast-on-card-button {
    display: none !important;
}

/* Hide direct child buttons just in case */
.woocommerce ul.products li.product>.button,
.woocommerce ul.products li.product>.add_to_cart_button {
    display: none !important;
}

/* Show ONLY the button inside the summary wrapper (bottom) */
.woocommerce ul.products li.product .astra-shop-summary-wrap .button,
.woocommerce ul.products li.product .main-cart-button {
    display: block !important;
    position: static !important;
    /* Reset positioning */
    opacity: 1 !important;
    visibility: visible !important;
}

/* Hide Astra's default title if it persists */
.astra-shop-summary-wrap>a.ast-loop-product__link,
.woocommerce-loop-product__link>.woocommerce-loop-product__title {
    /* Keep default title hidden if duplicated */
}

/* We want ONLY our h2 title */
h2.woocommerce-loop-product__title {
    display: block !important;
}

/* Force hide any other title-like elements inside the summary */
.astra-shop-summary-wrap>a:not(.button) {
    display: none !important;
}

/* WooCommerce Product Grid - GTA 6 Style */
.woocommerce ul.products {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    margin: 2rem 0 !important;
}

.woocommerce ul.products::before,
.woocommerce ul.products::after {
    display: none;
    /* Fix clearfix ruining grid */
}

.woocommerce ul.products li.product {
    width: 100% !important;
    margin: 0 !important;
    background: rgba(15, 15, 30, 0.85);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 0, 255, 0.15);
    border-radius: 12px;
    padding: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
}

.woocommerce ul.products li.product:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--neon-pink);
    box-shadow: 0 0 25px rgba(255, 0, 255, 0.3), inset 0 0 10px rgba(255, 0, 255, 0.1);
    z-index: 10;
}

/* Product Image */
.woocommerce ul.products li.product a img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    margin: 0 !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.5s ease;
}

.woocommerce ul.products li.product:hover a img {
    transform: scale(1.1);
}

/* Product Info */
.woocommerce ul.products li.product .woocommerce-loop-product__title {
    font-family: var(--font-heading);
    font-size: 1.3rem !important;
    color: #fff;
    padding: 1rem 1rem 0.5rem;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.2;
}

.woocommerce ul.products li.product .price {
    font-family: 'Rajdhani', sans-serif;
    color: var(--neon-cyan) !important;
    font-size: 1.4rem !important;
    font-weight: bold;
    text-shadow: 0 0 5px rgba(0, 255, 255, 0.5);
    padding: 0 1rem 1rem;
    display: block;
    margin-bottom: auto;
    /* Push button to bottom */
}

.woocommerce ul.products li.product .price del {
    color: var(--text-muted);
    font-size: 0.9rem !important;
    opacity: 0.7;
}

/* Add to Cart Button */
.woocommerce ul.products li.product .button {
    width: 100%;
    border-radius: 0;
    margin: 0 !important;
    background: transparent !important;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff !important;
    text-transform: uppercase;
    font-weight: 700;
    padding: 1rem !important;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.woocommerce ul.products li.product .button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 0, 255, 0.4), transparent);
    transition: 0.5s;
}

.woocommerce ul.products li.product:hover .button {
    background: var(--neon-pink) !important;
    text-shadow: 0 0 5px #fff;
}

.woocommerce ul.products li.product:hover .button::before {
    left: 100%;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .woocommerce ul.products {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        margin: 1rem 0 !important;
        justify-content: center;
        /* Center the grid */
    }

    .woocommerce ul.products li.product {
        text-align: center;
        /* Center content inside card */
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .woocommerce ul.products li.product .woocommerce-loop-product__title {
        font-size: 0.9rem !important;
        padding: 0.5rem !important;
    }

    .woocommerce ul.products li.product .price {
        font-size: 1rem !important;
        margin-bottom: 0.5rem !important;
    }

    .woocommerce ul.products li.product a img {
        height: 140px;
        /* Fixed height for consistency */
        width: 100%;
        object-fit: cover;
        margin: 0 auto !important;
        /* Center image */
        display: block;
    }

    /* Ensure buttons are visible and nice on mobile */
    .woocommerce ul.products li.product .button {
        opacity: 1 !important;
        padding: 0.8rem !important;
        font-size: 0.8rem !important;
    }
}

/* WooCommerce Overrides */
.woocommerce ul.products li.product {
    background: var(--bg-secondary);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.woocommerce ul.products li.product:hover {
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.2);
    border-color: var(--neon-cyan);
}

.woocommerce ul.products li.product .price {
    color: var(--neon-cyan);
    font-weight: bold;
    font-size: 1.2rem;
}

/* =========================================
   PROFESSIONAL CART & CHECKOUT REDESIGN
   ========================================= */

/* === CART PAGE === */

/* Cart Page Container */
.woocommerce-cart {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
}

/* Checkout Page Container */
.woocommerce-checkout {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
}

/* AGGRESSIVE CENTERING - Override ALL Astra layouts */
body.woocommerce-cart,
body.woocommerce-checkout {
    overflow-x: hidden;
}

body.woocommerce-cart *,
body.woocommerce-checkout * {
    box-sizing: border-box;
}

/* Match cart/checkout content to header width */
.woocommerce-cart .woocommerce,
.woocommerce-checkout .woocommerce {
    max-width: 1400px !important;
    margin: 0 auto !important;
    padding: 0 2rem !important;
}

/* Force center alignment for cart/checkout content */
.woocommerce-cart .site-content,
.woocommerce-checkout .site-content,
.woocommerce-cart .ast-container,
.woocommerce-checkout .ast-container,
.woocommerce-cart .site,
.woocommerce-checkout .site {
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    padding-top: 120px !important;
    /* Prevent header overlap */
    width: 100% !important;
}

/* Override any Astra theme offsets */
.woocommerce-cart #primary,
.woocommerce-checkout #primary,
.woocommerce-cart .site-main,
.woocommerce-checkout .site-main,
.woocommerce-cart #content,
.woocommerce-checkout #content {
    margin: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    float: none !important;
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 !important;
}

/* Force full-width layout - Override Astra sidebar ONLY for content */
.woocommerce-cart .site-content .ast-container,
.woocommerce-checkout .site-content .ast-container {
    max-width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
}

.woocommerce-cart .site-main,
.woocommerce-checkout .site-main {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Hide sidebar on cart/checkout */
.woocommerce-cart #secondary,
.woocommerce-checkout #secondary,
.woocommerce-cart .widget-area,
.woocommerce-checkout .widget-area {
    display: none !important;
}

/* Reset any grid layouts */
.woocommerce-cart .ast-grid-common-col,
.woocommerce-checkout .ast-grid-common-col {
    grid-column: 1 / -1 !important;
}

/* Force woocommerce wrapper to be centered like header */
.woocommerce-cart .woocommerce-cart-form,
.woocommerce-cart .cart-collaterals,
.woocommerce-checkout .woocommerce-checkout {
    max-width: 1400px !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

/* Page Title */
.woocommerce-cart .entry-title,
.woocommerce-checkout .entry-title {
    font-size: 3rem;
    color: #fff;
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 2rem;
    text-shadow: 0 0 20px var(--neon-pink);
    font-family: var(--font-heading);
}

/* Progress Indicator */
.cart-checkout-progress {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.progress-step {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    font-family: var(--font-heading);
    text-transform: uppercase;
    font-size: 0.9rem;
}

.progress-step.active {
    color: var(--neon-pink);
    text-shadow: 0 0 10px var(--neon-pink);
}

.progress-step .step-number {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.progress-step.active .step-number {
    background: var(--neon-pink);
    border-color: var(--neon-pink);
    box-shadow: 0 0 15px var(--neon-pink);
}

/* Cart Form */
.woocommerce-cart-form {
    background: rgba(15, 15, 30, 0.8) !important;
    backdrop-filter: blur(20px);
    padding: 0 !important;
    border: 1px solid rgba(255, 0, 255, 0.2) !important;
    border-radius: 16px !important;
    margin-bottom: 2rem !important;
    overflow: hidden;
}

/* Cart Table */
.woocommerce table.shop_table {
    border: none !important;
    background: transparent !important;
    width: 100%;
}

/* Table Header */
.woocommerce table.shop_table thead {
    background: rgba(0, 0, 0, 0.4);
}

.woocommerce table.shop_table th {
    color: var(--neon-cyan) !important;
    text-transform: uppercase;
    border: none !important;
    padding: 1.5rem 1rem !important;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-shadow: 0 0 10px var(--neon-cyan);
}

/* Cart Items */
.woocommerce-cart-form__cart-item {
    background: rgba(255, 255, 255, 0.02);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
    transition: all 0.3s ease;
}

.woocommerce-cart-form__cart-item:hover {
    background: rgba(255, 255, 255, 0.05);
    box-shadow: inset 0 0 20px rgba(255, 0, 255, 0.1);
}

.woocommerce table.shop_table td {
    border: none !important;
    color: #fff !important;
    padding: 1.5rem 1rem !important;
    vertical-align: middle;
}

/* Product Thumbnail */
.product-thumbnail img {
    width: 100px !important;
    height: 100px !important;
    object-fit: cover;
    border-radius: 8px;
    border: 2px solid rgba(255, 0, 255, 0.3);
    box-shadow: 0 0 15px rgba(255, 0, 255, 0.2);
    transition: all 0.3s ease;
}

.product-thumbnail img:hover {
    transform: scale(1.05);
    border-color: var(--neon-pink);
    box-shadow: 0 0 25px var(--neon-pink);
}

/* Product Name */
.product-name a {
    color: #fff !important;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.product-name a:hover {
    color: var(--neon-cyan) !important;
    text-shadow: 0 0 10px var(--neon-cyan);
}

/* Product Price */
.product-price .amount,
.product-subtotal .amount {
    color: var(--neon-cyan) !important;
    font-size: 1.3rem;
    font-weight: bold;
    font-family: var(--font-heading);
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

/* Quantity Input */
.quantity {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.quantity input.qty {
    width: 70px !important;
    height: 45px !important;
    background: rgba(0, 0, 0, 0.5) !important;
    border: 2px solid var(--neon-pink) !important;
    color: #fff !important;
    text-align: center;
    font-size: 1.2rem !important;
    font-weight: bold;
    border-radius: 8px;
    font-family: var(--font-heading);
}

.quantity input.qty:focus {
    outline: none;
    box-shadow: 0 0 20px var(--neon-pink);
    border-color: var(--neon-pink);
}

/* Remove Button */
.product-remove a {
    background: rgba(255, 0, 0, 0.1) !important;
    color: #ff4444 !important;
    width: 35px;
    height: 35px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 2px solid rgba(255, 0, 0, 0.3);
    font-size: 1.2rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.product-remove a:hover {
    background: #ff4444 !important;
    color: #fff !important;
    border-color: #ff4444;
    box-shadow: 0 0 20px #ff4444;
    transform: rotate(90deg);
}

/* Cart Actions */
.actions {
    background: rgba(0, 0, 0, 0.3);
    padding: 1.5rem !important;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.coupon {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    flex: 1;
    min-width: 300px;
}

.coupon input {
    flex: 1;
    background: rgba(0, 0, 0, 0.5) !important;
    border: 2px solid rgba(255, 255, 255, 0.2) !important;
    color: #fff !important;
    padding: 12px 15px !important;
    border-radius: 8px;
    font-size: 1rem;
    height: 48px !important;
}

.coupon input:focus {
    border-color: var(--neon-cyan) !important;
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.3);
    outline: none;
}

.coupon button,
button[name="update_cart"] {
    background: linear-gradient(45deg, var(--neon-pink), #bf00bf) !important;
    color: #fff !important;
    border: none !important;
    padding: 12px 25px !important;
    border-radius: 8px;
    text-transform: uppercase;
    font-weight: 700;
    font-family: var(--font-heading);
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 1px;
    height: 48px !important;
    white-space: nowrap;
    min-width: 140px;
}

.coupon button:hover,
button[name="update_cart"]:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 25px var(--neon-pink);
    filter: brightness(1.2);
}

/* Cart Totals Sidebar */
.cart-collaterals {
    background: transparent !important;
    padding: 0 !important;
    border: none !important;
    margin-top: 0 !important;
}

.cart_totals {
    background: rgba(15, 15, 30, 0.9) !important;
    backdrop-filter: blur(20px);
    border: 2px solid var(--neon-pink) !important;
    border-radius: 16px;
    padding: 2rem !important;
    box-shadow: 0 0 30px rgba(255, 0, 255, 0.3);
    position: sticky;
    top: 120px;
}

.cart_totals h2 {
    color: var(--neon-pink) !important;
    text-shadow: 0 0 15px var(--neon-pink) !important;
    text-transform: uppercase;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(255, 0, 255, 0.3);
}

.cart_totals table {
    margin-bottom: 1.5rem;
}

.cart_totals th,
.cart_totals td {
    padding: 1rem 0 !important;
    font-size: 1.1rem;
}

.cart_totals th {
    color: var(--text-muted) !important;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.cart_totals .order-total th,
.cart_totals .order-total td {
    font-size: 1.5rem !important;
    font-weight: bold;
    color: var(--neon-cyan) !important;
    text-shadow: 0 0 10px var(--neon-cyan);
    padding-top: 1.5rem !important;
    border-top: 2px solid rgba(255, 255, 255, 0.1);
}

/* Proceed to Checkout Button */
.wc-proceed-to-checkout {
    padding: 0;
}

.wc-proceed-to-checkout .checkout-button {
    width: 100%;
    background: linear-gradient(45deg, var(--neon-pink), #bf00bf) !important;
    color: #fff !important;
    border: none !important;
    padding: 1.5rem !important;
    border-radius: 12px;
    font-size: 1.3rem !important;
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-heading);
    box-shadow: 0 5px 20px rgba(255, 0, 255, 0.4);
}

.wc-proceed-to-checkout .checkout-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 40px var(--neon-pink);
    filter: brightness(1.2);
}

/* Trust Badges */
.cart-trust-badges {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    font-size: 0.85rem;
}

.trust-badge svg,
.trust-badge::before {
    content: 'âœ“';
    color: var(--neon-cyan);
    font-size: 1.2rem;
}

/* === CHECKOUT PAGE === */

.woocommerce-checkout {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
}

/* Two Column Layout */
.woocommerce-checkout #customer_details {
    background: rgba(15, 15, 30, 0.8) !important;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 0, 255, 0.2) !important;
    border-radius: 16px !important;
    padding: 2.5rem !important;
}

.woocommerce-checkout h3 {
    color: var(--neon-pink) !important;
    text-shadow: 0 0 15px var(--neon-pink) !important;
    text-transform: uppercase;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(255, 0, 255, 0.3);
}

/* Form Fields */
.woocommerce-checkout input[type="text"],
.woocommerce-checkout input[type="email"],
.woocommerce-checkout input[type="tel"],
.woocommerce-checkout textarea,
.woocommerce-checkout select {
    background: rgba(0, 0, 0, 0.5) !important;
    border: 2px solid rgba(255, 255, 255, 0.2) !important;
    color: #fff !important;
    padding: 15px !important;
    border-radius: 8px;
    font-size: 1rem;
    width: 100%;
    transition: all 0.3s ease;
}

.woocommerce-checkout input:focus,
.woocommerce-checkout textarea:focus,
.woocommerce-checkout select:focus {
    border-color: var(--neon-cyan) !important;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
    outline: none;
}

.woocommerce-checkout label {
    color: #fff !important;
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}

.woocommerce-checkout .form-row {
    margin-bottom: 1.5rem;
}

/* Order Review */
#order_review {
    background: rgba(15, 15, 30, 0.9) !important;
    backdrop-filter: blur(20px);
    border: 2px solid var(--neon-pink) !important;
    border-radius: 16px !important;
    padding: 2.5rem !important;
    box-shadow: 0 0 30px rgba(255, 0, 255, 0.3);
    position: sticky;
    top: 120px;
}

#order_review_heading {
    color: var(--neon-pink) !important;
    text-shadow: 0 0 15px var(--neon-pink) !important;
    text-transform: uppercase;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(255, 0, 255, 0.3);
}

/* Order Review table alignment */
.woocommerce-checkout #order_review table.shop_table {
    width: 100% !important;
    border-collapse: collapse;
    table-layout: fixed;
}

.woocommerce-checkout #order_review table.shop_table th,
.woocommerce-checkout #order_review table.shop_table td {
    padding: 0.8rem 0 !important;
    vertical-align: middle;
    display: table-cell;
}

.woocommerce-checkout #order_review table.shop_table thead th:first-child,
.woocommerce-checkout #order_review table.shop_table tbody td.product-name,
.woocommerce-checkout #order_review table.shop_table tfoot th {
    text-align: left !important;
    width: 70%;
}

.woocommerce-checkout #order_review table.shop_table thead th:last-child,
.woocommerce-checkout #order_review table.shop_table tbody td.product-total,
.woocommerce-checkout #order_review table.shop_table tfoot td {
    text-align: right !important;
    width: 30%;
    white-space: nowrap;
}

/* Payment Methods */
.woocommerce-checkout #payment {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    padding: 1.5rem;
    margin-top: 1.5rem;
}

.woocommerce-checkout #payment ul.payment_methods {
    border: none !important;
    padding: 0 !important;
}

.woocommerce-checkout #payment .payment_method_paypal,
.woocommerce-checkout #payment .payment_method_stripe {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.woocommerce-checkout #payment .payment_method_paypal:hover,
.woocommerce-checkout #payment .payment_method_stripe:hover {
    border-color: var(--neon-cyan) !important;
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.2);
}

.woocommerce-checkout #payment input[type="radio"] {
    accent-color: var(--neon-pink);
}

.woocommerce-checkout #payment label {
    color: #fff !important;
    font-size: 1.1rem;
    font-weight: 600 !important;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
}

/* Payment Method Labels - Force Visibility */
.woocommerce-checkout #payment .wc_payment_method label,
.woocommerce-checkout #payment .payment_method_paypal label,
.woocommerce-checkout #payment .payment_method_stripe label,
.woocommerce-checkout #payment li label {
    color: #fff !important;
    font-size: 1.1rem !important;
    font-weight: 700 !important;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.8) !important;
    display: inline-block !important;
    margin-left: 0.5rem !important;
}

/* Payment Method Images/Logos */
.woocommerce-checkout #payment img {
    max-height: 30px;
    vertical-align: middle;
    margin-left: 0.5rem;
    filter: brightness(1.2);
}

/* Payment Method Description */
.woocommerce-checkout #payment .payment_box {
    background: rgba(0, 0, 0, 0.4) !important;
    color: #fff !important;
    padding: 1rem !important;
    margin-top: 0.5rem !important;
    border-radius: 8px;
}

.woocommerce-checkout #payment .payment_box p {
    color: var(--text-muted) !important;
    font-size: 0.95rem;
}

/* Place Order Button */
.woocommerce-checkout #place_order {
    width: 100%;
    background: linear-gradient(45deg, var(--neon-pink), #bf00bf) !important;
    color: #fff !important;
    border: none !important;
    padding: 1.5rem !important;
    border-radius: 12px;
    font-size: 1.3rem !important;
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-heading);
    box-shadow: 0 5px 20px rgba(255, 0, 255, 0.4);
    margin-top: 1.5rem;
}

.woocommerce-checkout #place_order:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 40px var(--neon-pink);
    filter: brightness(1.2);
}

/* Security Badge */
.checkout-security {
    text-align: center;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-muted);
    font-size: 0.9rem;
}

.checkout-security::before {
    content: 'ðŸ”’';
    margin-right: 0.5rem;
    color: var(--neon-cyan);
}

/* Mobile Responsive */
@media (max-width: 992px) {

    .woocommerce-cart .entry-title,
    .woocommerce-checkout .entry-title {
        font-size: 2rem;
    }

    .cart_totals,
    #order_review {
        position: static;
    }

    .product-thumbnail img {
        width: 70px !important;
        height: 70px !important;
    }

    .actions {
        flex-direction: column;
    }

    .coupon {
        width: 100%;
    }
}

/* Side Palm Trees (Decorative) */
body::before,
body::after {
    content: '';
    position: fixed;
    bottom: 0;
    width: 300px;
    height: 600px;
    background-image: url('assets/images/side_palm_tree.png');
    background-image: image-set(
        url('assets/images/side_palm_tree.webp') type('image/webp'),
        url('assets/images/side_palm_tree.png') type('image/png')
    );
    background-size: contain;
    background-repeat: no-repeat;
    background-position: bottom;
    z-index: 0;
    opacity: 0.3;
    pointer-events: none;
}

body::before {
    left: -100px;
    transform: rotate(-10deg);
}

body::after {
    right: -100px;
    transform: scaleX(-1) rotate(10deg);
}

/* Responsive */
@media (max-width: 992px) {
    .main-navigation {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #0a0a1a;
        padding: 1rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .main-navigation.active {
        display: block;
    }

    .main-navigation ul {
        flex-direction: column;
        text-align: center;
    }

    .main-navigation ul li {
        margin: 1rem 0;
    }

    .mobile-menu-toggle {
        display: block;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .category-grid {
        grid-template-columns: 1fr;
    }

    body::before,
    body::after {
        display: none;
        /* Hide side palms on mobile */
    }
}

/* =========================================
   SINGLE PRODUCT PAGE - GTA 6 HUD STYLE
   ========================================= */

/* Main Container Reset */
.single-product .site-content {
    background: transparent !important;
}

.single-product-container {
    max-width: 1400px;
    margin: 120px auto 4rem;
    /* Top margin for sticky header */
    padding: 0 2rem;
}

.single-product div.product {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    /* Image wider than info */
    gap: 4rem;
    align-items: start;
    margin-top: 2rem;
}

/* 1. PRODUCT GALLERY (Left) */
.woocommerce-product-gallery {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    opacity: 1 !important;
    /* Force visible */
}

.woocommerce-product-gallery::after {
    content: '';
    position: absolute;
    inset: 0;
    box-shadow: inset 0 0 50px rgba(0, 0, 0, 0.5);
    pointer-events: none;
    z-index: 1;
}

.woocommerce-product-gallery img {
    transition: transform 0.5s ease;
    width: 100%;
}

.woocommerce-product-gallery:hover img {
    transform: scale(1.05);
}

/* 2. PRODUCT SUMMARY (Right - HUD Style) */
.summary.entry-summary {
    background: rgba(15, 15, 30, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-right: 2px solid var(--neon-pink);
    /* Neon Accent */
    padding: 3rem;
    border-radius: 4px 16px 4px 16px;
    /* Tech shape */
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
    position: sticky;
    top: 120px;
    max-width: 100%;
    overflow-x: auto;
    /* Allow horizontal scroll if needed */
}

/* Title */
.product_title {
    font-size: 3.5rem !important;
    line-height: 1.1;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 15px rgba(255, 0, 255, 0.4);
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 1.5rem;
}

/* Price */
.price {
    font-size: 2.5rem !important;
    color: var(--neon-cyan) !important;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    margin: 1.5rem 0 !important;
    display: flex;
    align-items: center;
    gap: 1rem;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.6);
}

/* Short Description */
.woocommerce-product-details__short-description {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    border-left: 3px solid var(--neon-cyan);
    padding-left: 1.5rem;
}

/* Add to Cart Section */
form.cart {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Quantity Input */
.quantity input {
    background: transparent !important;
    border: 2px solid rgba(255, 255, 255, 0.2) !important;
    color: #fff !important;
    font-size: 1.5rem !important;
    width: 80px !important;
    height: 60px !important;
    text-align: center;
    border-radius: 4px;
    font-family: 'Rajdhani', sans-serif;
}

.quantity input:focus {
    border-color: var(--neon-cyan) !important;
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.3);
    outline: none;
}

/* Add to Cart Button */
button.single_add_to_cart_button {
    flex-grow: 1;
    background: linear-gradient(45deg, var(--neon-pink), #bf00bf) !important;
    color: #fff !important;
    font-size: 1.5rem !important;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: none !important;
    clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
    /* Sci-fi shape */
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

button.single_add_to_cart_button:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px var(--neon-pink);
    filter: brightness(1.2);
}

/* Meta Data (SKU, Category) */
.product_meta {
    margin-top: 2rem;
    font-size: 0.9rem;
    color: #666;
    border-top: 1px dashed rgba(255, 255, 255, 0.1);
    padding-top: 1rem;
}

.product_meta span {
    display: block;
    margin-bottom: 0.5rem;
}

.product_meta a {
    color: var(--neon-cyan);
}

/* 3. TABS (Description/Reviews) */
.woocommerce-tabs {
    grid-column: 1 / -1;
    /* Full width */
    margin-top: 4rem;
    background: var(--bg-secondary);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 0;
}

.woocommerce-tabs ul.tabs {
    background: rgba(0, 0, 0, 0.3) !important;
    padding: 0 !important;
    margin: 0 !important;
    display: flex;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.woocommerce-tabs ul.tabs li {
    background: transparent !important;
    border: none !important;
    border-right: 1px solid rgba(255, 255, 255, 0.05) !important;
    border-radius: 0 !important;
    margin: 0 !important;
}

.woocommerce-tabs ul.tabs li a {
    padding: 1.5rem 2rem !important;
    color: var(--text-muted) !important;
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.woocommerce-tabs ul.tabs li.active {
    background: rgba(255, 0, 255, 0.1) !important;
    border-bottom: 2px solid var(--neon-pink) !important;
}

.woocommerce-tabs ul.tabs li.active a {
    color: #fff !important;
    text-shadow: 0 0 10px var(--neon-pink);
}

.woocommerce-Tabs-panel {
    padding: 3rem !important;
    color: #ccc;
    font-size: 1.1rem;
    line-height: 1.8;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .single-product div.product {
        grid-template-columns: 1fr;
        /* Stack vertically */
        gap: 2rem;
    }

    .summary.entry-summary {
        position: static;
        padding: 1.5rem;
    }

    .product_title {
        font-size: 2.5rem !important;
    }
}

/* =========================================
   CLEANUP & POLISH (BREADCRUMB, ALERTS, GALLERY)
   ========================================= */

/* 1. CLEAN BREADCRUMB (Top Bar) */
.woocommerce-breadcrumb {
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    background: rgba(0, 0, 0, 0.4);
    padding: 0.8rem 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    margin: 0 0 2rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.woocommerce-breadcrumb a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.woocommerce-breadcrumb a:hover {
    color: var(--neon-cyan);
    text-shadow: 0 0 5px var(--neon-cyan);
}

.woocommerce-breadcrumb span {
    opacity: 0.5;
    /* Separator / */
}

/* 2. SUCCESS MESSAGE (Added to Cart) */
.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
    background: rgba(10, 30, 10, 0.95) !important;
    /* Dark Green tint */
    border: 1px solid #00ff00 !important;
    color: #fff !important;
    padding: 1.5rem 2rem !important;
    margin-bottom: 2rem !important;
    border-radius: 4px;
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.woocommerce-message::before {
    content: '?';
    font-weight: bold;
    color: #00ff00;
    margin-right: 1rem;
    font-size: 1.5rem;
}

/* The 'View Cart' button inside the message */
.woocommerce-message .button {
    background: transparent !important;
    border: 1px solid #00ff00 !important;
    color: #00ff00 !important;
    font-size: 0.9rem !important;
    padding: 0.5rem 1.5rem !important;
    text-transform: uppercase;
    border-radius: 4px;
    float: right;
    margin-left: 2rem;
    transition: all 0.3s ease;
}

.woocommerce-message .button:hover {
    background: #00ff00 !important;
    color: #000 !important;
    box-shadow: 0 0 15px #00ff00;
}

/* 3. GALLERY TWEAKS (No Zoom, Clean Slider) */
.woocommerce-product-gallery__trigger {
    display: none !important;
    /* HIDE THE MAGNIFYING GLASS ICON */
}

.woocommerce-product-gallery__image {
    pointer-events: none;
    /* DISABLE ZOOM ON HOVER */
}

/* Re-enable pointer events for the slider dots/arrows only */
.flex-control-nav,
.flex-direction-nav {
    pointer-events: auto;
}

.flex-control-nav {
    position: absolute;
    bottom: 10px;
    width: 100%;
    text-align: center;
    z-index: 10;
}

.flex-control-nav li {
    display: inline-block;
    margin: 0 5px;
}

.flex-control-nav li a {
    width: 10px;
    height: 10px;
    display: block;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    cursor: pointer;
    text-indent: -9999px;
}

.flex-control-nav li a.flex-active {
    background: var(--neon-cyan);
    box-shadow: 0 0 5px var(--neon-cyan);
}


/* =========================================
   GALLERY & TABS FIXES (THUMBNAILS BELOW)
   ========================================= */

/* 1. FORCE THUMBNAILS BELOW IMAGE & FIX SLIDER */
.woocommerce-product-gallery {
    position: relative;
    display: flex;
    flex-direction: column;
}

.woocommerce-product-gallery .flex-viewport {
    order: 1;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.woocommerce-product-gallery .flex-control-nav {
    position: static !important;
    /* Remove absolute positioning */
    width: 100%;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 15px !important;
    padding: 0;
    order: 2;
    /* Ensure it's below the image */
}

.woocommerce-product-gallery .flex-control-nav li {
    width: 60px !important;
    /* Fixed size thumbnails */
    height: 60px !important;
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.woocommerce-product-gallery .flex-control-nav li:hover,
.woocommerce-product-gallery .flex-control-nav li img.flex-active {
    border-color: var(--neon-pink);
    /* Neon Pink Selection */
    box-shadow: 0 0 15px var(--neon-pink);
    transform: scale(1.1);
}

.woocommerce-product-gallery .flex-control-nav li img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
    transition: opacity 0.3s;
    display: block;
}

.woocommerce-product-gallery .flex-control-nav li img.flex-active,
.woocommerce-product-gallery .flex-control-nav li:hover img {
    opacity: 1;
}

/* 2. ALIGN TABS WITH CONTENT */
.single-product div.product {
    /* Use grid areas to move tabs */
    grid-template-areas:
        'gallery summary'
        'tabs tabs';
}

.woocommerce-product-gallery {
    grid-area: gallery;
}

.summary.entry-summary {
    grid-area: summary;
}

.woocommerce-tabs {
    grid-area: tabs;
    margin-top: 3rem !important;
    /* Space between product info and tabs */
    width: 100%;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: transparent !important;
    /* Remove background for cleaner look */
    border: none !important;
}

/* Clean up Tab Content */
.woocommerce-Tabs-panel {
    background: rgba(15, 15, 30, 0.5);
    /* Semi-transparent background */
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 0 0 8px 8px;
    margin-top: -1px;
    /* Connect with tabs */
}

/* Responsive fix */
@media (max-width: 992px) {
    .single-product div.product {
        grid-template-areas:
            'gallery'
            'summary'
            'tabs';
    }
}


/* =========================================
   FINAL POLISH (ARROWS, SIZING, ALIGNMENT)
   ========================================= */

/* 1. CAROUSEL ARROWS */
.flex-direction-nav a {
    text-indent: -9999px;
    display: block;
    width: 40px;
    height: 40px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    overflow: hidden;
    opacity: 0;
    cursor: pointer;
    transition: all 0.3s ease;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
}

.woocommerce-product-gallery:hover .flex-direction-nav a {
    opacity: 1;
}

.flex-direction-nav a.flex-prev {
    left: 10px;
}

.flex-direction-nav a.flex-next {
    right: 10px;
}

.flex-direction-nav a::before {
    content: '';
    display: block;
    width: 10px;
    height: 10px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    position: absolute;
    top: 50%;
    left: 50%;
}

.flex-direction-nav a.flex-prev::before {
    transform: translate(-30%, -50%) rotate(-135deg);
}

.flex-direction-nav a.flex-next::before {
    transform: translate(-70%, -50%) rotate(45deg);
}

.flex-direction-nav a:hover {
    background: var(--neon-pink);
    box-shadow: 0 0 10px var(--neon-pink);
}


/* 2. COMPACT PRODUCT INFO (Right Side) */
.product_title {
    font-size: 2.2rem !important;
    /* Reduced from 3.5rem */
    padding-bottom: 1rem;
    margin-bottom: 1rem;
}

.price {
    font-size: 1.8rem !important;
    /* Reduced from 2.5rem */
    margin: 1rem 0 !important;
}

.summary.entry-summary {
    padding: 2rem !important;
    /* More compact padding */
}


/* 3. TABS ALIGNMENT FIX */
.single-product div.product {
    /* Ensure tabs span full width but respect grid */
    grid-template-areas:
        'gallery summary'
        'tabs tabs';
    column-gap: 3rem;
}

.woocommerce-tabs {
    grid-area: tabs;
    margin-top: 3rem !important;
    width: 100%;
    max-width: 100%;
    /* Prevent overflow */
}

.woocommerce-tabs ul.tabs {
    padding-left: 0 !important;
    /* Align left perfectly */
    margin-left: 0 !important;
    justify-content: flex-start;
    /* Force left alignment */
}

/* Fix Tab Content Width */
.woocommerce-Tabs-panel {
    width: 100%;
    box-sizing: border-box;
    /* Ensure padding doesn't add width */
}

/* Ensure images in description don't break layout */
.woocommerce-Tabs-panel img {
    max-width: 100%;
    height: auto;
}


/* =========================================
   EMERGENCY LAYOUT FIX (NO OVERLAP) & ARROWS
   ========================================= */

/* 1. RESET LAYOUT (Flexbox instead of Grid to prevent overlap) */
.single-product div.product {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 0 !important;
    /* We handle spacing manually */
    justify-content: space-between !important;
}

/* Left Column: Gallery */
.woocommerce-product-gallery {
    width: 55% !important;
    float: none !important;
    margin-right: 0 !important;
    flex-shrink: 0 !important;
}

/* Right Column: Summary (The Box) */
.summary.entry-summary {
    width: 40% !important;
    float: none !important;
    margin-left: 0 !important;
    flex-shrink: 0 !important;

    /* SLIM DOWN THE BOX */
    padding: 1.5rem !important;
    /* Reduced padding */
    top: 100px !important;
    /* Sticky adjustment */
}

/* Bottom Row: Tabs */
.woocommerce-tabs {
    width: 100% !important;
    margin-top: 3rem !important;
    clear: both !important;
    flex-basis: 100% !important;
}

/* 2. MAKE TEXT CLEANER & SMALLER */
.product_title {
    font-size: 1.6rem !important;
    /* Much smaller */
    margin-bottom: 0.5rem !important;
    padding-bottom: 0.5rem !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.price {
    font-size: 1.4rem !important;
    /* Smaller price */
    margin: 0.5rem 0 !important;
}

.woocommerce-product-details__short-description {
    font-size: 0.95rem !important;
    /* Smaller text */
    line-height: 1.5 !important;
    margin-bottom: 1rem !important;
}

/* 3. ARROWS (ALWAYS VISIBLE & STYLED) */
.flex-direction-nav a {
    opacity: 1 !important;
    /* Force visible */
    visibility: visible !important;
    background: rgba(0, 0, 0, 0.7) !important;
    width: 50px !important;
    height: 50px !important;
    border-radius: 50% !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    margin-top: -25px !important;
    /* True vertical center */
}

.flex-direction-nav a::before {
    font-size: 20px !important;
    color: #fff !important;
    content: '' !important;
    border: solid white;
    border-width: 0 3px 3px 0;
    display: inline-block;
    padding: 5px;
    position: absolute;
    top: 35%;
}

/* Left Arrow Icon */
.flex-direction-nav a.flex-prev::before {
    transform: rotate(135deg);
    left: 18px;
}

.flex-direction-nav a.flex-prev {
    left: 20px !important;
}

/* Right Arrow Icon */
.flex-direction-nav a.flex-next::before {
    transform: rotate(-45deg);
    right: 18px;
}

.flex-direction-nav a.flex-next {
    right: 20px !important;
}

.flex-direction-nav a:hover {
    background: var(--neon-pink) !important;
    border-color: var(--neon-pink) !important;
    transform: scale(1.1) translateY(-50%) !important;
    /* Keep centered while scaling */
}

/* 4. MOBILE FIX */
@media (max-width: 768px) {

    .woocommerce-product-gallery,
    .summary.entry-summary {
        width: 100% !important;
    }
}


/* =========================================
   EMERGENCY CLEANUP V2 (HIDE CLUTTER)
   ========================================= */

/* 1. HIDE THE DESCRIPTION/REVIEWS TABS COMPLETELY */
.woocommerce-tabs {
    display: none !important;
}

/* 2. HIDE META (Tags, SKU, Categories) */
.product_meta {
    display: none !important;
}

/* 3. ARROWS: FORCE VISIBLE & PINK NEON */
.flex-direction-nav a {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    background: rgba(255, 0, 255, 0.8) !important;
    /* Bright Pink Background */
    width: 50px !important;
    height: 50px !important;
    border-radius: 50% !important;
    z-index: 9999 !important;
    margin-top: -25px !important;
    box-shadow: 0 0 20px var(--neon-pink) !important;
    border: 2px solid #fff !important;
    transition: all 0.3s ease !important;
    cursor: pointer !important;
    position: absolute !important;
    top: 50% !important;
}

/* Force Arrow Icons White */
.flex-direction-nav a::before {
    color: #fff !important;
    font-size: 24px !important;
    opacity: 1 !important;
    border: solid white;
    border-width: 0 3px 3px 0;
    display: inline-block;
    padding: 6px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    content: '' !important;
}

/* Positioning */
.flex-direction-nav a.flex-prev {
    left: 15px !important;
}

.flex-direction-nav a.flex-prev::before {
    transform: translate(-30%, -50%) rotate(135deg) !important;
}

.flex-direction-nav a.flex-next {
    right: 15px !important;
}

.flex-direction-nav a.flex-next::before {
    transform: translate(-70%, -50%) rotate(-45deg) !important;
}

/* Hover effect */
.flex-direction-nav a:hover {
    background: var(--neon-pink) !important;
    box-shadow: 0 0 30px var(--neon-pink) !important;
    transform: translateY(-50%) scale(1.1) !important;
}

/* 4. CLEAN UP SUMMARY BOX SPACING */
.summary.entry-summary {
    margin-bottom: 0 !important;
    padding-bottom: 2rem !important;
}

/* FIX SLIDER OVERFLOW ON MOBILE */
.woocommerce-product-gallery {
    max-width: 100%;
    overflow: visible !important;
    /* Allow arrows to be seen */
}

.woocommerce-product-gallery .flex-viewport {
    overflow: hidden;
    /* Keep images contained */
}

/* Ensure images don't get cut off */
.woocommerce-product-gallery img {
    width: 100%;
    height: auto;
    display: block;
}


/* =========================================
   MOBILE OPTIMIZATION PACK (RESPONSIVE FIXES)
   ========================================= */

@media (max-width: 992px) {

    /* 1. HEADER FIXES */
    .header-container {
        padding: 0.5rem 1rem !important;
        flex-wrap: nowrap !important;
        /* Keep logo and hamburger on same line */
    }

    .main-navigation {
        display: none;
        /* Hide desktop menu by default */
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(10, 10, 20, 0.98);
        border-bottom: 1px solid var(--neon-pink);
        padding: 1rem;
        z-index: 9999;
    }

    .main-navigation.active {
        display: block !important;
        /* Show when toggled */
    }

    .main-navigation ul {
        flex-direction: column !important;
        align-items: center !important;
    }

    .main-navigation li {
        margin: 10px 0 !important;
        width: 100%;
        text-align: center;
    }

    .mobile-menu-toggle {
        display: block !important;
        font-size: 1.8rem;
        color: #fff;
        cursor: pointer;
        margin-left: 1rem;
    }

    /* Fix Logo Size on Mobile */
    .logo-icon {
        height: 40px !important;
        width: auto !important;
    }

    /* 2. PRODUCT PAGE MOBILE STACK */
    .single-product div.product {
        flex-direction: column !important;
        /* Force vertical stack */
        display: block !important;
        /* Fallback */
    }

    .woocommerce-product-gallery {
        width: 100% !important;
        margin-bottom: 2rem !important;
    }

    .summary.entry-summary {
        width: 100% !important;
        padding: 1.5rem !important;
        margin-top: 0 !important;
        position: static !important;
        /* Remove sticky on mobile */
    }

    /* 3. BUTTONS & INPUTS (TOUCH FRIENDLY) */
    button.single_add_to_cart_button {
        width: 100% !important;
        padding: 1.2rem !important;
        /* Bigger touch area */
        font-size: 1.2rem !important;
        margin-top: 1rem !important;
        cursor: pointer;
        z-index: 100;
        /* Ensure clickable */
        position: relative;
    }

    .quantity {
        width: 100% !important;
        text-align: center !important;
        margin-bottom: 1rem !important;
    }

    .quantity input {
        width: 100% !important;
        height: 50px !important;
    }

    form.cart {
        flex-direction: column !important;
        /* Stack quantity and button */
    }

    /* 4. GENERAL PADDING FIX */
    .site-content {
        padding-top: 80px !important;
        /* Prevent header overlap */
    }

    .woocommerce ul.products {
        grid-template-columns: repeat(2, 1fr) !important;
        /* 2 columns for shop grid */
        gap: 10px !important;
        padding: 0 10px !important;
    }

    .woocommerce ul.products li.product .button {
        opacity: 1 !important;
        /* Always show button on mobile */
        transform: none !important;
    }

    /* FIX PRODUCT PAGE ON MOBILE */
    .summary.entry-summary {
        padding: 1rem !important;
        overflow-x: auto !important;
        max-width: 100vw !important;
        box-sizing: border-box !important;
    }

    /* Fix table overflow */
    .summary.entry-summary table {
        width: 100% !important;
        max-width: 100% !important;
        display: block !important;
        overflow-x: auto !important;
        font-size: 0.85rem !important;
    }

    .summary.entry-summary table th,
    .summary.entry-summary table td {
        padding: 8px 5px !important;
        font-size: 0.85rem !important;
        white-space: nowrap !important;
    }

    /* Fix description text */
    .woocommerce-product-details__short-description {
        font-size: 0.9rem !important;
        padding-left: 0.5rem !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
    }

    /* Fix code block */
    .summary.entry-summary p,
    .summary.entry-summary div {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        max-width: 100% !important;
    }
}


/* =========================================
   CART, CHECKOUT & HEADER - MOBILE OVERHAUL
   ========================================= */

/* 1. HEADER REFINEMENT (MOBILE) */
@media (max-width: 992px) {
    .site-header {
        height: 70px;
        /* Fixed height to prevent jumps */
        display: flex;
        align-items: center;
        background: #0a0a1a !important;
        /* Solid background */
    }

    .header-container {
        width: 100%;
        padding: 0 1rem !important;
        justify-content: space-between !important;
    }

    .site-branding {
        flex-grow: 1;
    }

    .header-actions {
        gap: 15px !important;
    }

    /* Fix Mobile Menu Dropdown */
    .main-navigation {
        top: 70px !important;
        /* Push below header */
        background: rgba(10, 10, 25, 0.98) !important;
        backdrop-filter: blur(15px);
        border-bottom: 2px solid var(--neon-pink);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
    }
}

/* 2. CART & CHECKOUT OPTIMIZATION (ALL SCREENS) */

/* Inputs & Forms - Make them BIG and CLEAN */
.woocommerce input[type='text'],
.woocommerce input[type='email'],
.woocommerce input[type='tel'],
.woocommerce textarea,
.select2-selection {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: #fff !important;
    padding: 15px !important;
    /* Comfortable padding */
    font-size: 16px !important;
    /* Readable font size */
    border-radius: 4px;
    height: auto !important;
}

.woocommerce input:focus,
.woocommerce textarea:focus {
    border-color: var(--neon-cyan) !important;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.2);
    outline: none;
}

/* Labels */
.woocommerce form .form-row label {
    color: var(--text-muted);
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

/* --- FIX SORT BY DROPDOWN (NEON STYLE) --- */
.woocommerce-ordering select,
.woocommerce-ordering .select2-selection--single,
.select2-container .select2-selection--single {
    background-color: #000 !important;
    color: #fff !important;
    border: 2px solid var(--neon-pink) !important;
    border-radius: 4px !important;
    padding: 10px 15px !important;
    font-family: var(--font-heading) !important;
    text-transform: uppercase !important;
    font-size: 1rem !important;
    box-shadow: 0 0 10px rgba(255, 0, 255, 0.2) !important;
    outline: none !important;
    height: auto !important;
    min-height: 45px !important;
    display: flex !important;
    align-items: center !important;
}

/* Dropdown Arrow Color */
.woocommerce-ordering select {
    background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23FF00FF%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: right 1rem center !important;
    background-size: 0.8rem auto !important;
    appearance: none !important;
    /* Hide default arrow */
    -webkit-appearance: none !important;
    padding-right: 2.5rem !important;
}

/* Select2 Dropdown Options (if used) */
.select2-dropdown {
    background-color: #000 !important;
    border: 2px solid var(--neon-pink) !important;
    color: #fff !important;
}

.select2-results__option {
    color: #fff !important;
    background: #000 !important;
}

.select2-results__option--highlighted {
    background-color: var(--neon-pink) !important;
    color: #fff !important;
}

/* Fix Container Alignment */
.woocommerce-ordering {
    margin-bottom: 2rem !important;
    float: right !important;
    /* Default Woo behavior */
}

@media (max-width: 768px) {
    .woocommerce-ordering {
        float: none !important;
        width: 100% !important;
        margin: 0 auto 1.5rem auto !important;
        text-align: center !important;
    }

    .woocommerce-ordering select {
        width: 100% !important;
        max-width: 100% !important;
    }
}

/* 3. MOBILE SPECIFIC CART & CHECKOUT (Responsive Tables) */
@media (max-width: 768px) {

    /* --- CART TRANSFORMATION (Table to Cards) --- */
    .woocommerce-cart-form__contents thead {
        display: none;
        /* Hide header row */
    }

    .woocommerce-cart-form__contents tbody,
    .woocommerce-cart-form__contents tr,
    .woocommerce-cart-form__contents td {
        display: block;
        width: 100%;
        text-align: left;
    }

    .woocommerce-cart-form__contents tr {
        background: rgba(255, 255, 255, 0.02);
        border: 1px solid rgba(255, 255, 255, 0.1);
        margin-bottom: 1rem;
        padding: 1rem;
        border-radius: 8px;
        position: relative;
    }

    /* Product Remove (X) Button */
    .product-remove {
        position: absolute;
        top: 10px;
        right: 10px;
        border: none !important;
    }

    /* Product Thumbnail */
    .product-thumbnail {
        text-align: center !important;
        border: none !important;
    }

    .product-thumbnail img {
        width: 80px;
        height: auto;
        border-radius: 4px;
    }

    /* Product Name */
    .product-name {
        font-family: var(--font-heading);
        font-size: 1.2rem;
        color: #fff;
        border: none !important;
        padding-bottom: 0 !important;
    }

    /* Price & Quantity */
    .product-price,
    .product-quantity,
    .product-subtotal {
        border: none !important;
        padding: 5px 0 !important;
        color: var(--text-muted);
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    /* Add labels via CSS for context */
    .product-price::before {
        content: 'Price: ';
    }

    .product-quantity::before {
        content: 'Qty: ';
    }

    .product-subtotal::before {
        content: 'Total: ';
        color: var(--neon-cyan);
    }

    /* Keep cart rows fully visible on small screens */
    .woocommerce-cart-form {
        width: 100% !important;
        overflow: hidden !important;
    }

    .woocommerce-cart-form__contents tr {
        width: 100% !important;
    }

    /* Make product card layout tighter and aligned */
    .woocommerce-cart-form__contents td {
        text-align: left !important;
    }

    .product-thumbnail {
        text-align: left !important;
    }

    .product-thumbnail img {
        width: 70px !important;
        height: 70px !important;
        object-fit: cover;
    }

    .product-name {
        font-size: 1rem !important;
        margin-top: 0.5rem;
    }

    .product-price,
    .product-quantity,
    .product-subtotal {
        font-size: 0.9rem !important;
        gap: 8px;
    }

    .product-quantity .quantity {
        justify-content: flex-start;
    }

    .quantity input.qty {
        width: 64px !important;
        height: 40px !important;
        font-size: 1rem !important;
    }

    /* Actions: stack and give full width to inputs/buttons */
    .actions {
        padding: 1rem !important;
        gap: 12px !important;
    }

    .custom-actions-wrapper {
        width: 100%;
        gap: 12px;
    }

    .coupon-wrapper,
    .coupon {
        width: 100%;
        flex-direction: column !important;
        align-items: stretch !important;
    }

    .coupon input,
    .coupon button,
    button[name='update_cart'] {
        width: 100% !important;
        min-width: 0 !important;
    }

    /* Cart Actions (Coupon/Update) */
    .actions {
        display: flex;
        flex-direction: column;
        gap: 10px;
        padding: 0 !important;
    }

    .coupon {
        display: flex !important;
        flex-direction: column;
        gap: 10px;
    }

    .coupon input {
        width: 100% !important;
    }

    /* Cart totals and checkout button spacing on mobile */
    .cart_totals {
        padding: 1.5rem !important;
    }

    .cart_totals table {
        width: 100% !important;
    }

    .cart_totals .wc-proceed-to-checkout {
        margin-top: 1rem;
    }

    .cart_totals .checkout-button {
        width: 100% !important;
        display: block !important;
        text-align: center !important;
        white-space: normal !important;
        line-height: 1.2 !important;
        padding: 1rem !important;
        box-sizing: border-box !important;
    }

    /* Tabs: stack for mobile readability */
    .woocommerce-tabs {
        margin-top: 2rem !important;
    }

    .woocommerce-tabs ul.tabs {
        flex-direction: column !important;
        border-bottom: none !important;
    }

    .woocommerce-tabs ul.tabs li {
        width: 100% !important;
        border-right: none !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
    }

    .woocommerce-tabs ul.tabs li a {
        display: block !important;
        padding: 1rem 1.25rem !important;
        font-size: 1rem !important;
    }

    .woocommerce-Tabs-panel {
        padding: 1.5rem !important;
        font-size: 1rem !important;
    }

    /* --- CHECKOUT TRANSFORMATION --- */
    .col2-set .col-1,
    .col2-set .col-2 {
        width: 100% !important;
        float: none !important;
        padding: 0 !important;
    }

    #order_review_heading,
    #order_review {
        width: 100% !important;
        padding: 1.5rem !important;
    }

    /* Payment Methods */
    .wc_payment_methods li {
        background: rgba(255, 255, 255, 0.05);
        padding: 1rem;
        border-radius: 4px;
        margin-bottom: 10px;
    }
}


/* =========================================
   SEARCH OVERLAY & FINAL HEADER POLISH
   ========================================= */

/* 1. SEARCH OVERLAY (GTA Style) */
.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    /* Top of everything */
    display: none;
    /* Hidden by default */
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(10px);
}

.search-overlay.active {
    display: flex;
    animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.search-container {
    text-align: center;
    width: 90%;
    max-width: 800px;
    position: relative;
}

/* Close Button */
.close-btn {
    position: absolute;
    top: -100px;
    right: 0;
    background: none;
    border: none;
    color: #fff;
    font-size: 4rem;
    cursor: pointer;
    transition: color 0.3s;
}

.close-btn:hover {
    color: var(--neon-pink);
    text-shadow: 0 0 15px var(--neon-pink);
}

/* Search Input */
.search-field {
    width: 100%;
    background: transparent !important;
    border: none !important;
    border-bottom: 2px solid var(--neon-cyan) !important;
    color: #fff !important;
    font-size: 3rem !important;
    font-family: var(--font-heading);
    text-transform: uppercase;
    text-align: center;
    padding: 1rem !important;
}

.search-field::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.search-field:focus {
    outline: none;
    box-shadow: 0 10px 30px rgba(0, 255, 255, 0.1);
}

/* Go Button */
.search-submit {
    display: none;
    /* Hide button, use Enter */
}

.search-hint {
    color: var(--text-muted);
    margin-top: 1rem;
    font-size: 1rem;
    letter-spacing: 2px;
}

/* 2. HEADER MENU HOVER EFFECTS */
.main-navigation ul li a {
    position: relative;
    padding: 0.5rem 0;
}

.main-navigation ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--neon-pink);
    transition: width 0.3s ease;
}

.main-navigation ul li a:hover::after {
    width: 100%;
    box-shadow: 0 0 10px var(--neon-pink);
}

/* Dropdown Arrow */
.main-navigation .menu-item-has-children>a::after {
    content: none;
    /* No underline for dropdown parents */
}


/* =========================================
   READABILITY FIXES (MENUS & MY ACCOUNT)
   ========================================= */

/* 1. DROPDOWN MENUS (Solid Background) */
.main-navigation ul.sub-menu {
    background: #0a0a1a !important;
    /* Solid Black/Blue */
    border: 1px solid var(--neon-pink);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 1);
    /* Strong shadow */
    padding: 10px 0;
    z-index: 99999;
}

.main-navigation ul.sub-menu li {
    background: transparent !important;
}

.main-navigation ul.sub-menu li a {
    color: #fff !important;
    /* Force White Text */
    font-size: 1rem !important;
    text-shadow: none !important;
    opacity: 1 !important;
}

.main-navigation ul.sub-menu li a:hover {
    background: var(--neon-pink) !important;
    color: #fff !important;
}

/* 2. MY ACCOUNT / LOGIN FORMS */
.woocommerce-account .woocommerce {
    background: rgba(10, 10, 25, 0.95);
    /* Opaque background */
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.woocommerce-form-login p,
.woocommerce-form-login label {
    color: #fff !important;
    /* White Text */
}

/* Dashboard Links (My Account Navigation) */
.woocommerce-MyAccount-navigation ul {
    list-style: none;
    padding: 0;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.woocommerce-MyAccount-navigation li a {
    display: block;
    padding: 1rem;
    color: var(--text-muted);
    font-family: var(--font-heading);
    font-size: 1.2rem;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.woocommerce-MyAccount-navigation li.is-active a {
    color: var(--neon-cyan);
    background: rgba(0, 255, 255, 0.05);
    border-left: 3px solid var(--neon-cyan);
}

.woocommerce-MyAccount-navigation li a:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.05);
}

/* Content Area (Orders, etc.) */
.woocommerce-MyAccount-content {
    color: #ddd;
    font-size: 1.1rem;
}

.woocommerce-MyAccount-content p,
.woocommerce-MyAccount-content address {
    color: #ddd !important;
}

/* Login/Register Inputs */
#username,
#password,
#reg_email,
#reg_password {
    background: #000 !important;
    color: #fff !important;
    border: 1px solid #444 !important;
}


/* =========================================
   EMERGENCY VISIBILITY FIX (FOOTER & LOGIN)
   ========================================= */

/* 1. FOOTER VISIBILITY */
.site-footer,
.site-footer p,
.site-footer h3,
.site-footer span,
.site-info {
    color: #ffffff !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8);
}

.footer-desc {
    color: #cccccc !important;
    font-size: 1.1rem;
    line-height: 1.6;
}

/* 2. LOGIN FORMS (Force Visibility) */
.woocommerce-form-login,
.woocommerce-form-register {
    background: rgba(0, 0, 0, 0.5);
    padding: 20px;
    border: 1px solid var(--neon-pink);
    border-radius: 8px;
}

/* Input Fields (Background Black, Text White) */
.woocommerce form .form-row input.input-text {
    background-color: #000000 !important;
    color: #ffffff !important;
    border: 1px solid #ffffff !important;
    padding: 15px !important;
    font-size: 16px !important;
}

/* Labels (Username, Password...) */
.woocommerce form .form-row label {
    color: #ffffff !important;
    font-weight: bold;
    font-size: 1rem;
    display: block;
    margin-bottom: 5px;
}

/* Button */
.woocommerce-form-login__submit {
    background: var(--neon-cyan) !important;
    color: #000 !important;
    font-weight: bold;
    padding: 15px 30px !important;
    border: none !important;
    margin-top: 10px;
    cursor: pointer;
}

.woocommerce-form-login__submit:hover {
    background: #fff !important;
    box-shadow: 0 0 15px var(--neon-cyan);
}


/* =========================================
   404 ERROR PAGE STYLING (GTA STYLE)
   ========================================= */

.error404 .site-content {
    text-align: center;
    padding: 100px 20px;
    background: url('assets/images/bg-miami.png') no-repeat center center;
    background-image: image-set(
        url('assets/images/bg-miami.webp') type('image/webp'),
        url('assets/images/bg-miami.png') type('image/png')
    );
    background-size: cover;
}

.error404 .page-header .page-title {
    font-size: 8rem;
    color: var(--neon-pink);
    text-shadow: 0 0 30px var(--neon-pink);
    margin: 0;
    line-height: 1;
}

.error404 .page-content p {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 2rem;
}

.error404 .search-form {
    max-width: 500px;
    margin: 0 auto;
}

.error404 .search-field {
    border: 2px solid var(--neon-cyan) !important;
    background: rgba(0, 0, 0, 0.8) !important;
    color: #fff !important;
}


/* =========================================
   FINAL FIX: FOOTER BACKGROUND & LOGIN UI
   ========================================= */

/* 1. FOOTER BACKGROUND (FIX WHITE ON WHITE) */
.site-footer {
    background-color: #050510 !important;
    /* Deep Dark Blue/Black */
    background-image: linear-gradient(to top, #050510, #0a0a1a) !important;
    border-top: 2px solid var(--neon-pink);
    padding-top: 3rem;
    margin-top: 0;
}

.footer-widgets {
    background: transparent !important;
}

/* 2. LOGIN PAGE & INVISIBLE TEXTS FIX */

/* Labels (Remember Me, etc.) */
.woocommerce-form-login label,
.woocommerce-form-login span {
    color: #e0e0e0 !important;
    /* Almost white */
    font-size: 0.95rem;
}

/* Checkbox alignment */
.woocommerce-form-login label.woocommerce-form__label-for-checkbox {
    display: inline-flex !important;
    align-items: center;
    gap: 10px;
    margin: 10px 0;
}

.woocommerce-form-login input[type='checkbox'] {
    accent-color: var(--neon-pink);
    width: 20px !important;
    height: 20px !important;
    border: 1px solid #fff !important;
    background: #000 !important;
}

/* Lost Password Link */
.woocommerce-LostPassword a {
    color: var(--neon-cyan) !important;
    font-size: 0.9rem;
    text-decoration: none;
    display: block;
    margin-top: 10px;
}

.woocommerce-LostPassword a:hover {
    text-decoration: underline;
    text-shadow: 0 0 5px var(--neon-cyan);
}

/* Show Password Eye Icon (WooCommerce default) */
.show-password-input {
    color: var(--neon-pink) !important;
    top: 15px !important;
    /* Align with input */
    right: 15px !important;
}

/* RECAPTCHA BOX SPACING */
.g-recaptcha,
.login .g-recaptcha {
    margin: 20px 0 !important;
    clear: both;
    transform: scale(0.9);
    /* Scale down slightly for mobile */
    transform-origin: 0 0;
}

/* CONTAINER STYLE (Glassmorphism Box) */
#customer_login {
    max-width: 500px;
    margin: 4rem auto;
    padding: 0 1rem;
}

.u-column1,
.u-column2 {
    width: 100% !important;
    float: none !important;
}

.woocommerce-form-login {
    background: rgba(10, 15, 30, 0.95) !important;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.8), 0 0 10px rgba(255, 0, 255, 0.1);
}

.woocommerce-form-login h2 {
    color: #fff;
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 2rem;
    border-bottom: 1px solid var(--neon-cyan);
    padding-bottom: 1rem;
}


/* =========================================
   MY ACCOUNT: READABILITY & CLEANUP
   ========================================= */

/* 1. TITLES (Downloads, Addresses, Orders) */
.woocommerce-MyAccount-content h2,
.woocommerce-MyAccount-content h3,
.woocommerce-column__title {
    color: #fff !important;
    font-family: var(--font-heading);
    text-transform: uppercase;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid var(--neon-pink);
    padding-bottom: 0.5rem;
    text-shadow: 0 0 10px rgba(255, 0, 255, 0.3);
}

/* 2. GENERAL TEXT (Order #299 was placed...) */
.woocommerce-MyAccount-content p {
    color: #ccc !important;
    font-size: 1.05rem;
    line-height: 1.6;
}

/* Highlighted Text (Order Numbers, Status) */
.woocommerce-MyAccount-content mark {
    background: transparent !important;
    color: var(--neon-cyan) !important;
    font-weight: bold;
    font-style: normal;
    text-shadow: 0 0 5px rgba(0, 255, 255, 0.4);
}

/* Links inside text */
.woocommerce-MyAccount-content a {
    color: var(--neon-pink) !important;
    text-decoration: none;
}

/* 3. ADDRESS BOXES */
.woocommerce-Address {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 4px;
    margin-bottom: 2rem;
}

.woocommerce-Address address {
    color: #ddd !important;
    font-style: normal;
    line-height: 1.8;
}

.woocommerce-Address .woocommerce-MyAccount-navigation-link--edit-address a {
    display: inline-block;
    margin-top: 1rem;
    color: var(--neon-cyan) !important;
    font-size: 0.9rem;
    text-transform: uppercase;
    border: 1px solid var(--neon-cyan);
    padding: 0.3rem 1rem;
    border-radius: 4px;
}

/* 4. ORDERS & DOWNLOADS TABLES */
.woocommerce-orders-table,
.woocommerce-MyAccount-downloads {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 10px;
    /* Gap between rows */
}

.woocommerce-orders-table__header,
.woocommerce-orders-table__cell,
.woocommerce-MyAccount-downloads thead th,
.woocommerce-MyAccount-downloads tbody td {
    padding: 1rem !important;
    text-align: left;
}

/* Headers */
.woocommerce-orders-table__header,
.woocommerce-MyAccount-downloads thead th {
    color: var(--text-muted) !important;
    text-transform: uppercase;
    font-size: 0.85rem;
    border-bottom: none !important;
}

/* Rows (Cards style) */
.woocommerce-orders-table__row,
.woocommerce-MyAccount-downloads tbody tr {
    background: rgba(255, 255, 255, 0.05);
    transition: background 0.3s;
}

.woocommerce-orders-table__row:hover,
.woocommerce-MyAccount-downloads tbody tr:hover {
    background: rgba(255, 255, 255, 0.1);
}

.woocommerce-orders-table__cell,
.woocommerce-MyAccount-downloads tbody td {
    color: #fff !important;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* First/Last corners rounded */
.woocommerce-orders-table__cell:first-child {
    border-left: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px 0 0 8px;
}

.woocommerce-orders-table__cell:last-child {
    border-right: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 0 8px 8px 0;
}

/* Buttons inside tables */
.woocommerce-button.button {
    background: transparent !important;
    border: 1px solid #fff !important;
    color: #fff !important;
    padding: 5px 15px !important;
    font-size: 0.8rem !important;
}

.woocommerce-button.button:hover {
    background: #fff !important;
    color: #000 !important;
}


/* =========================================
   FAQ PAGE STYLING (SEO OPTIMIZED)
   ========================================= */

.faq-section {
    max-width: 800px;
    margin: 4rem auto;
    padding: 0 1rem;
}

.faq-header {
    text-align: center;
    margin-bottom: 3rem;
}

.faq-header h2 {
    font-size: 3rem;
    color: #fff;
    text-transform: uppercase;
    text-shadow: 0 0 15px var(--neon-pink);
    margin-bottom: 1rem;
}

.faq-header p {
    color: var(--text-muted);
    font-size: 1.2rem;
}

/* Accordion Item */
details.faq-item {
    background: rgba(10, 10, 25, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 1rem;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

details.faq-item[open] {
    border-color: var(--neon-cyan);
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.2);
    background: rgba(10, 10, 25, 0.95);
}

/* Summary (The Question) */
summary {
    list-style: none;
    /* Remove default triangle */
    padding: 1.5rem;
    cursor: pointer;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding-right: 3rem;
}

summary::-webkit-details-marker {
    display: none;
}

/* Custom + Icon */
summary::after {
    content: '+';
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: var(--neon-pink);
    transition: transform 0.3s ease;
}

details[open] summary::after {
    transform: translateY(-50%) rotate(45deg);
    /* Turn into X */
    color: var(--neon-cyan);
}

details[open] summary {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--neon-cyan);
    text-shadow: 0 0 5px rgba(0, 255, 255, 0.5);
}

/* The Answer */
.faq-answer {
    padding: 1.5rem;
    color: #ddd;
    line-height: 1.6;
    font-size: 1rem;
    animation: slideDown 0.3s ease-out;
}

.faq-answer strong {
    color: #fff;
    font-weight: 600;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* =========================================
   ABOUT US PAGE STYLING (MIAMI VICE)
   ========================================= */

.about-miami-layout {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 1rem;
    color: #fff;
}

/* 1. HERO SECTION */
.about-hero-box {
    text-align: center;
    margin-bottom: 4rem;
    padding: 3rem;
    background: linear-gradient(135deg, rgba(10, 10, 25, 0.9), rgba(20, 20, 40, 0.8));
    border: 1px solid var(--neon-pink);
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(255, 0, 255, 0.15);
}

.neon-title {
    font-size: 4rem;
    color: #fff;
    text-transform: uppercase;
    text-shadow: 0 0 20px var(--neon-pink);
    margin-bottom: 0.5rem;
}

.neon-subtitle {
    font-size: 1.5rem;
    color: var(--neon-cyan);
    margin-bottom: 2rem;
    letter-spacing: 2px;
}

/* 2. FEATURES GRID */
.about-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.feature-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--neon-cyan);
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.2);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.feature-card h3 {
    color: var(--neon-pink);
    margin-bottom: 1rem;
    text-transform: uppercase;
}

/* 3. DETAILS & COLUMNS */
.about-details-container {
    display: flex;
    gap: 3rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.detail-column {
    flex: 1;
    background: rgba(0, 0, 0, 0.5);
    padding: 2rem;
    border-left: 3px solid var(--neon-cyan);
}

.neon-text {
    color: #fff;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 10px var(--neon-cyan);
}

.neon-list {
    list-style: none;
    padding: 0;
}

.neon-list li {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    padding-left: 1.5rem;
    position: relative;
}

.neon-list li::before {
    content: '?';
    position: absolute;
    left: 0;
    color: var(--neon-pink);
}

/* 4. FOOTER & CTA */
.about-footer-box {
    text-align: center;
    margin-bottom: 3rem;
    padding: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.payment-badges {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin: 2rem 0;
    font-size: 1.2rem;
    color: #fff;
}

.payment-badges span {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 4px;
}

.btn-discord {
    display: inline-block;
    background: #5865F2;
    /* Discord Color */
    color: #fff;
    padding: 1rem 2.5rem;
    font-size: 1.2rem;
    font-weight: bold;
    border-radius: 4px;
    text-decoration: none;
    margin-top: 1.5rem;
    box-shadow: 0 0 15px rgba(88, 101, 242, 0.5);
    transition: all 0.3s ease;
}

.btn-discord:hover {
    background: #4752C4;
    transform: scale(1.05);
    color: #fff;
}

.about-seo-text {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.7;
}

@media (max-width: 768px) {
    .about-details-container {
        flex-direction: column;
    }

    .neon-title {
        font-size: 2.5rem;
    }
}


/* =========================================
   FIX WHITE BACKGROUND ON PAGES
   ========================================= */

.page-id-27420 .site-content,
.page-template-default .site-content,
.page .entry-content,
.page .entry-header {
    background-color: transparent !important;
    background: transparent !important;
}

/* Ensure text is white globally on pages */
.page .entry-content p,
.page .entry-content li {
    color: #eee;
}

/* Specific Fix for About Us layout wrapper if needed */
.about-miami-layout {
    background: transparent !important;
}


/* =========================================
   SEO FOOTER CLOUD
   ========================================= */

.seo-footer-bar {
    background: #050505;
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    font-size: 0.9rem;
}

.seo-footer-bar h4 {
    color: var(--neon-cyan);
    text-transform: uppercase;
    font-size: 1rem;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.seo-links {
    margin-bottom: 1.5rem;
}

.seo-links a {
    color: #666;
    text-decoration: none;
    margin: 0 5px;
    transition: color 0.3s;
}

.seo-links a:hover {
    color: #fff;
    text-decoration: underline;
}

.seo-tiny-text {
    color: #444;
    font-size: 0.8rem;
    max-width: 800px;
    margin: 0 auto;
}

.seo-tiny-text strong {
    color: #666;
}


/* =========================================
   COMPACT & USER-FRIENDLY CART
   ========================================= */

/* 1. Make Cart Table Compact */
.woocommerce-cart-form__contents td {
    padding: 10px !important;
    /* Reduced padding */
    vertical-align: middle;
}

/* Smaller Thumbnails */
.product-thumbnail img {
    width: 60px !important;
    /* Smaller images */
    height: auto;
    border-radius: 4px;
}

/* Product Name Text */
.product-name a {
    font-size: 1rem !important;
    /* Not too big */
    font-weight: 600;
}

/* Remove 'Price' label on desktop to save space if needed, 
   but keep for clarity. Let's just make it subtle. */
.product-price .amount,
.product-subtotal .amount {
    font-size: 1rem !important;
    color: var(--neon-cyan);
}

/* 2. Cart Totals Box (Compact) */
.cart-collaterals .cart_totals {
    width: 100% !important;
    padding: 1.5rem !important;
    background: rgba(10, 10, 20, 0.8) !important;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cart-collaterals h2 {
    font-size: 1.5rem !important;
    /* Smaller header */
    margin-bottom: 1rem !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.cart-collaterals table th,
.cart-collaterals table td {
    padding: 10px !important;
    /* Tighter rows */
    font-size: 0.95rem !important;
}

/* Proceed to Checkout Button */
.wc-proceed-to-checkout .checkout-button {
    font-size: 1.1rem !important;
    padding: 15px !important;
    margin-top: 1rem !important;
    background: linear-gradient(90deg, var(--neon-pink), #bf00bf) !important;
}

/* Coupon Code Compact */
.coupon {
    display: flex;
    gap: 10px;
    align-items: center;
    padding-bottom: 1rem;
}

.coupon input {
    width: 150px !important;
    /* Smaller input */
    padding: 10px !important;
    font-size: 0.9rem !important;
}

.coupon button {
    padding: 10px 20px !important;
    font-size: 0.9rem !important;
}


/* =========================================
   LOGO FIX & ABOUT US READABILITY
   ========================================= */

/* 1. LOGO IMAGE FIT */
.logo-img {
    max-height: 72px;
    /* Adjust based on header height */
    width: auto;
    display: block;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 5px var(--neon-pink));
}

@media (max-width: 768px) {
    .logo-img {
        max-height: 56px;
        /* Smaller on mobile */
    }
}

/* 2. ABOUT US READABILITY (FORCE WHITE TEXT) */
.about-miami-layout p,
.about-miami-layout li,
.about-miami-layout h1,
.about-miami-layout h2,
.about-miami-layout h3 {
    color: #ffffff !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8);
    /* Shadow for contrast */
}

.feature-card p {
    color: #ddd !important;
}

/* Force dark background on feature cards if they are transparent */
.feature-card {
    background: rgba(0, 0, 0, 0.6) !important;
    backdrop-filter: blur(5px);
}

/* Detail columns background */
.detail-column {
    background: rgba(0, 0, 0, 0.7) !important;
}


/* =========================================
   LOGO SIZE & HEADER BLEND
   ========================================= */

/* 1. BIGGER LOGO */
.logo-img {
    max-height: 90px !important;
    /* Increased from 60px */
    width: auto;
    margin-top: 5px;
    margin-bottom: 5px;
}

@media (max-width: 768px) {
    .logo-img {
        max-height: 60px !important;
        /* Bigger on mobile too */
    }
}

/* 2. HEADER BLEND (Transparent/Glass) */
.site-header {
    background: rgba(0, 0, 0, 0.3) !important;
    /* More transparent to blend */
    backdrop-filter: blur(5px);
    /* Subtle blur */
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    /* Faint border */
}

/* On Scroll (Darker for readability) */
.site-header.scrolled {
    background: #0a0a1a !important;
    /* Solid dark when scrolling */
    padding: 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.8);
}

.header-container {
    padding: 0 2rem;
    height: 100px;
    /* Ensure bar is tall enough for logo */
    display: flex;
    align-items: center;
}


/* =========================================
   ABOUT US - PAYMENT & FOOTER TEXT FIX
   ========================================= */

/* 1. Payment Box Background */
.about-footer-box {
    background: #000 !important;
    /* Solid Black */
    border: 1px solid #333;
    padding: 3rem !important;
    margin-top: 3rem;
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
}

/* 2. Payment Badges (Make them pop) */
.payment-badges span {
    background: #222 !important;
    color: #fff !important;
    border: 1px solid #555;
    padding: 10px 20px !important;
    font-size: 1.1rem !important;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

/* 3. Text Visibility */
.about-footer-box p {
    color: #ccc !important;
    font-size: 1.1rem;
    margin-top: 1rem;
}

.about-seo-text p {
    color: #aaa !important;
    /* Lighter grey */
    font-style: italic;
    background: rgba(0, 0, 0, 0.8);
    /* Background behind text just in case */
    padding: 1rem;
    border-radius: 4px;
    display: inline-block;
}

/* Discord Button Text */
.btn-discord {
    color: #fff !important;
    text-shadow: none !important;
    font-weight: 800;
}


/* =========================================
   MEGA WOW BUTTON ANIMATION
   ========================================= */

.btn-mega-wow {
    font-size: 2rem !important;
    /* Huge text */
    padding: 1.5rem 4rem !important;
    border-width: 3px !important;
    border-radius: 50px !important;
    /* Rounded futuristic look */
    letter-spacing: 4px !important;
    background: transparent;
    color: #fff;
    text-transform: uppercase;
    font-weight: 900;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px var(--neon-pink), inset 0 0 20px var(--neon-pink);
    text-shadow: 0 0 10px #fff, 0 0 20px var(--neon-pink);
    animation: neonPulse 2s infinite alternate;
}

/* Hover Effect: Explosion */
.btn-mega-wow:hover {
    background: var(--neon-pink);
    color: #fff;
    box-shadow: 0 0 50px var(--neon-pink), 0 0 100px var(--neon-pink), inset 0 0 30px #fff;
    transform: scale(1.1) translateY(-5px);
    text-shadow: 0 0 20px #fff;
}

/* Light Stream Animation */
.btn-mega-wow::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
    transform: skewX(-25deg);
    animation: shineStream 3s infinite;
}

@keyframes neonPulse {
    0% {
        box-shadow: 0 0 20px var(--neon-pink), inset 0 0 10px var(--neon-pink);
    }

    100% {
        box-shadow: 0 0 40px var(--neon-pink), inset 0 0 20px var(--neon-pink);
    }
}

@keyframes shineStream {
    0% {
        left: -100%;
    }

    20% {
        left: 200%;
    }

    /* Fast pass */
    100% {
        left: 200%;
    }

    /* Wait */
}

/* Center Container */
.hero-buttons {
    justify-content: center !important;
    margin-top: 3rem;
}


/* =========================================
   NEW CATEGORIES & MOBILE MENU FIX
   ========================================= */

/* 1. NEW CATEGORY IMAGES */
.cat-trucks::before {
    background-image: url('assets/images/cat-trucks.png');
    background-image: image-set(
        url('assets/images/cat-trucks.webp') type('image/webp'),
        url('assets/images/cat-trucks.png') type('image/png')
    );
    /* Placeholder path */
    /* Fallback gradient if image missing */
    background: linear-gradient(45deg, #222, #444);
}

.cat-vanilla::before {
    background-image: url('assets/images/cat-vanilla.png');
    background-image: image-set(
        url('assets/images/cat-vanilla.webp') type('image/webp'),
        url('assets/images/cat-vanilla.png') type('image/png')
    );
    background: linear-gradient(45deg, #111, #333);
}

/* 2. MOBILE MENU REPAIR */

/* Accessibility contrast overrides */
.seo-meta-block p,
.seo-small {
    color: #d0d0d0;
}
@media (max-width: 992px) {

    /* Prevent Header Overflow */
    .header-container {
        width: 100% !important;
        padding: 0 10px !important;
        overflow: hidden !important;
        /* Cut off overflow */
        justify-content: space-between !important;
    }

    /* Shrink Logo slightly more if needed */
    .logo-img {
        max-height: 40px !important;
        margin: 0 !important;
    }

    /* Adjust Actions (Search/Cart/Menu) spacing */
    .header-actions {
        gap: 10px !important;
        flex-shrink: 0 !important;
        /* Don't squash icons */
    }

    .header-actions a {
        font-size: 1.2rem !important;
        /* Smaller icons */
    }

    /* Menu Dropdown Fix */
    .main-navigation {
        width: 100vw !important;
        /* Full viewport width */
        left: 0 !important;
        right: 0 !important;
        box-sizing: border-box !important;
    }
}


/* =========================================
   MOBILE HEADER REVOLUTION (FULL SCREEN MENU)
   ========================================= */

@media (max-width: 992px) {

    /* 1. HEADER BAR STRUCTURE */
    .site-header {
        position: fixed !important;
        top: 0;
        left: 0;
        width: 100%;
        height: 70px !important;
        background: #000 !important;
        /* Solid Black */
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        z-index: 10000;
        display: flex;
        align-items: center;
        padding: 0 !important;
    }

    .header-container {
        width: 100% !important;
        padding: 0 15px !important;
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        height: 100% !important;
    }

    /* 2. HIDE CLUTTER ON BAR (Search/Cart) */
    /* We hide them on the bar to keep it clean, 
       they will be inside the menu or accessible otherwise */
    .header-actions .cart-icon,
    .header-actions .search-icon {
        display: none !important;
    }

    /* Logo Sizing */
    .logo-img {
        max-height: 40px !important;
        width: auto !important;
        margin: 0 !important;
    }

    /* 3. HAMBURGER ICON (Big & Clickable) */
    .mobile-menu-toggle {
        display: flex !important;
        align-items: center;
        justify-content: center;
        width: 50px;
        height: 50px;
        font-size: 2rem !important;
        color: var(--neon-cyan) !important;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 8px;
        cursor: pointer;
    }

    /* 4. FULL SCREEN MENU OVERLAY */
    .main-navigation {
        display: none;
        position: fixed !important;
        top: 70px !important;
        /* Start below header */
        left: 0 !important;
        width: 100vw !important;
        height: calc(100vh - 70px) !important;
        /* Fill rest of screen */
        background: #050505 !important;
        /* Deep black */
        overflow-y: auto !important;
        /* Scrollable if long */
        padding: 2rem !important;
        z-index: 9999;
        border-top: 1px solid var(--neon-pink);
    }

    .main-navigation.active {
        display: block !important;
        animation: slideInLeft 0.3s ease-out;
    }

    /* Menu Links Styling (Big & Touchable) */
    .main-navigation ul {
        flex-direction: column !important;
        gap: 1rem !important;
        padding-bottom: 3rem !important;
    }

    .main-navigation ul li a {
        font-size: 1.5rem !important;
        text-transform: uppercase;
        color: #fff !important;
        padding: 10px 0 !important;
        display: block !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    /* Submenus */
    .main-navigation ul.sub-menu {
        position: static !important;
        background: transparent !important;
        box-shadow: none !important;
        border: none !important;
        padding-left: 20px !important;
        display: block !important;
        /* Always show submenus on mobile */
    }

    .main-navigation ul.sub-menu li a {
        font-size: 1.1rem !important;
        color: #aaa !important;
        border-bottom: none !important;
    }

    /* 5. PUSH CONTENT DOWN */
    .site-content {
        padding-top: 80px !important;
        /* Space for fixed header */
    }
}

@keyframes slideInLeft {
    from {
        transform: translateX(-100%);
    }

    to {
        transform: translateX(0);
    }
}


/* =========================================
   EMERGENCY HEADER RESET (SAFETY FIX)
   ========================================= */

@media (max-width: 992px) {

    /* 1. UN-FIX THE HEADER (Make it scroll naturally) */
    .site-header {
        position: relative !important;
        /* No more overlay */
        height: auto !important;
        background: #000 !important;
        padding: 10px 0 !important;
    }

    .header-container {
        height: auto !important;
        min-height: 60px;
        flex-wrap: wrap !important;
        /* Allow wrapping if needed */
    }

    /* 2. RESET CONTENT SPACING */
    .site-content {
        padding-top: 0 !important;
        /* Remove the forced gap */
        margin-top: 0 !important;
    }

    /* 3. MENU BEHAVIOR (Standard Dropdown) */
    .main-navigation {
        position: static !important;
        /* Stays inside the header flow */
        width: 100% !important;
        height: auto !important;
        background: #0a0a1a !important;
        border-top: 1px solid #333;
        margin-top: 10px;
        display: none;
        /* Hidden by default */
    }

    .main-navigation.active {
        display: block !important;
        /* Shows when clicked */
    }

    .main-navigation ul {
        padding: 1rem 0 !important;
    }

    .main-navigation ul li a {
        font-size: 1.1rem !important;
        /* Standard size */
        padding: 10px 20px !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    /* 4. VISIBILITY FIXES */
    .header-actions {
        display: flex !important;
        gap: 15px !important;
    }

    /* Ensure icons are visible */
    .header-actions .cart-icon,
    .header-actions .search-icon {
        display: block !important;
        font-size: 1.5rem !important;
    }

    /* 5. LOGO FIX */
    .logo-img {
        max-height: 50px !important;
        width: auto !important;
    }
}


/* =========================================
   FORCE CLOSE MOBILE MENU BY DEFAULT
   ========================================= */

@media (max-width: 992px) {

    /* Force hide the navigation container */
    .main-navigation,
    #site-navigation {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        height: 0 !important;
        overflow: hidden !important;
    }

    /* Force show ONLY when active class is present */
    .main-navigation.active,
    #site-navigation.active {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        height: auto !important;
        background: #0a0a1a !important;
    }
}

/* =========================================
   NEON DISPLAY CASE (FEATURED PRODUCTS)
   ========================================= */

.neon-display-case {
    max-width: 1400px;
    margin: 0 auto;
    padding: 3rem;
    background: rgba(10, 10, 30, 0.6);
    backdrop-filter: blur(10px);
    border: 2px solid var(--neon-cyan);
    border-radius: 20px;
    box-shadow:
        0 0 20px rgba(0, 255, 255, 0.2),
        inset 0 0 30px rgba(0, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

/* Cybernetic corners */
.neon-display-case::before,
.neon-display-case::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 40px;
    border: 4px solid var(--neon-pink);
    z-index: 5;
}

.neon-display-case::before {
    top: -5px;
    left: -5px;
    border-right: none;
    border-bottom: none;
}

.neon-display-case::after {
    bottom: -5px;
    right: -5px;
    border-left: none;
    border-top: none;
}

/* Center the WooCommerce grid */
.neon-display-case .woocommerce ul.products {
    justify-content: center !important;
    margin: 0 !important;
}

.neon-display-case .woocommerce ul.products li.product {
    /* Subtle glow for items inside the case */
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
}

@media (max-width: 768px) {
    .neon-display-case {
        padding: 1.5rem;
        margin: 0 10px;
        border-width: 1px;
    }
}


/* =========================================
   FAQ & GENERAL READABILITY BOOST
   ========================================= */

.faq-header p {
    color: #ffffff !important;
    /* Pure White */
    font-size: 1.4rem !important;
    /* Bigger */
    font-weight: 500;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 1);
    /* Strong shadow to pop from background */
    opacity: 1 !important;
}

.faq-answer p {
    color: #eeeeee !important;
    line-height: 1.8;
    font-size: 1.1rem;
}

.faq-item summary {
    color: #ffffff !important;
    font-weight: 700 !important;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

/* Ensure all 'p' tags in entry content are readable */
.entry-content p {
    color: #ffffff !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8);
}

/* =========================================
   DARK MODE OVERRIDES (KILL WHITE BACKGROUND)
   ========================================= */

/* 1. FORCE BODY BACKGROUND */
html,
body {
    background-color: #0a0a1a !important;
    background-image: url('assets/images/side_palm_tree.png') !important;
    background-image: image-set(
        url('assets/images/side_palm_tree.webp') type('image/webp'),
        url('assets/images/side_palm_tree.png') type('image/png')
    ) !important;
    /* Ensure palms persist */
    color: #fff !important;
}

/* 2. KILL WHITE BACKGROUNDS ON ALL CONTAINERS */
#page,
.hfeed,
.site,
.site-inner,
.site-content,
.ast-container,
.site-main,
.content-area,
.ast-separate-container,
.ast-article-post,
.ast-article-single,
.ast-author-box,
.ast-404-layout-1,
.no-results,
.ast-primary-header-bar,
.main-header-bar,
.ast-above-header,
.ast-below-header {
    background-color: transparent !important;
    background: transparent !important;
}

/* 3. SPECIFIC FIX FOR ASTRA BOXED LAYOUT (Keep semi-transparent) */
.ast-separate-container .ast-article-post,
.ast-separate-container .ast-article-single,
.ast-separate-container .ast-author-box,
.ast-separate-container .ast-404-layout-1,
.ast-separate-container .no-results {
    background-color: rgba(10, 10, 26, 0.8) !important;
    border: 1px solid var(--neon-cyan);
    backdrop-filter: blur(5px);
}

/* 4. ENSURE TEXT READABILITY */
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
span,
li,
a,
div {
    color: #fff;
}

/* 5. FIX SPECIFIC ASTRA TEXT COLORS */
.entry-title,
.entry-content,
.ast-blog-single-element,
.ast-archive-description {
    color: #fff !important;
}

/* 6. GLOW EFFECT FOR MAIN CONTENT */
.site-content {
    position: relative;
    z-index: 1;
}

/* =========================================
   ALIGNMENT FIX (STICKY HEADER) 2026-01-20
   ========================================= */
/* Switch to Sticky to fix 'decallés' issue caused by scrollbar width on Windows */
.site-header {
    position: sticky !important;
    top: 0;
    left: 0;
    width: 100% !important;
    /* Remove fixed positioning issues */
    margin-left: 0 !important;
    margin-right: 0 !important;
    /* Ensure it stays on top */
    z-index: 9999 !important;
}

/* Remove compensation padding since Sticky takes space */
body.woocommerce-cart .site-content,
body.woocommerce-checkout .site-content,
.site-content {
    padding-top: 0 !important;
}

/* Ensure global alignment matches */
.header-container,
.shop-container,
.woocommerce-cart .woocommerce,
.woocommerce-checkout .woocommerce {
    max-width: 1400px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    width: 100% !important;
    padding-left: 2rem !important;
    padding-right: 2rem !important;
    box-sizing: border-box !important;
}

/* Fix Hero Section if needed (it might need top margin if it was relying on under-header placement) */
.hero-section {
    /* If the design relied on transparency, we might need negative margin, 
       but for alignment 'sur la coche', sticky is safer. 
       If hero looks cut off, we can add this back: */
    /* margin-top: -80px; padding-top: 230px; */
}

/* Ensure product grid alignment */
.woocommerce ul.products {
    margin-left: 0 !important;
    margin-right: 0 !important;
    width: 100% !important;
}



/* =========================================
   CART ALIGNMENT FIXES 2026-01-20
   ========================================= */

/* 1. BUTTON ALIGNMENT (Coupon & Update Cart) */
.actions {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    flex-wrap: wrap !important;
    gap: 1rem !important;
}

.coupon {
    display: flex !important;
    align-items: stretch !important; /* Force same height */
    gap: 10px !important;
}

.coupon input,
.coupon button,
button[name='update_cart'] {
    height: 50px !important; /* Fixed height for perfect alignment */
    margin: 0 !important;
    box-sizing: border-box !important;
    vertical-align: middle !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.coupon input {
    width: 200px !important;
}

/* 2. CROSS-SELLS (Products on Right -> Left/Bottom) */
.cross-sells {
    width: 100% !important;
    float: none !important;
    clear: both !important;
    margin-top: 3rem !important;
    display: block !important;
}

.cross-sells > h2 {
    font-size: 2rem !important;
    margin-bottom: 1.5rem !important;
    text-transform: uppercase;
    color: #fff;
    border-bottom: 2px solid var(--neon-pink);
    display: inline-block;
}

.cross-sells ul.products {
    display: grid !important;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)) !important; /* Responsive grid */
    gap: 2rem !important;
    width: 100% !important;
    margin: 0 !important;
}

.cart-collaterals {
    display: block !important;
    width: 100% !important;
}

/* Ensure Cart Totals is also full width or nicely placed */
.cart_totals {
    width: 100% !important;
    max-width: 600px !important;
    margin-left: auto !important; /* Align right */
    margin-bottom: 3rem !important;
}

/* 3. HEADER & SPACING ADJUSTMENT (Like Shop) */
/* Reset padding for page content to match Shop */
.page .entry-header {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

/* If there's a gap at the top, pull it up */
body.woocommerce-cart .entry-content,
body.woocommerce-checkout .entry-content {
    margin-top: 2rem !important;
}



/* =========================================
   AGGRESSIVE BUTTON & LAYOUT FIX 2026-01-20
   ========================================= */

/* 1. BUTTON ALIGNMENT - FORCE HEIGHT & FLEX */
.woocommerce-cart .actions {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    flex-wrap: wrap !important;
    gap: 15px !important;
}

/* Coupon Area */
.woocommerce-cart .coupon {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    flex-grow: 1 !important;
    max-width: 600px !important;
}

/* Input & Buttons Shared Styles */
.woocommerce-cart .coupon .input-text,
.woocommerce-cart .coupon button,
.woocommerce-cart button[name='update_cart'] {
    height: 50px !important; /* STRICT HEIGHT */
    line-height: 1 !important; /* Reset line-height */
    padding: 0 20px !important;
    margin: 0 !important;
    border-radius: 4px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-sizing: border-box !important;
    vertical-align: middle !important;
}

/* Specific Input Tweaks */
.woocommerce-cart .coupon .input-text {
    width: 250px !important;
    border: 1px solid rgba(255,255,255,0.2) !important;
}

/* Specific Button Tweaks */
.woocommerce-cart .coupon button,
.woocommerce-cart button[name='update_cart'] {
    background: linear-gradient(45deg, var(--neon-pink), #bf00bf) !important;
    color: #fff !important;
    font-size: 0.9rem !important;
    font-weight: 700 !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none !important;
    cursor: pointer !important;
}

/* Update Cart Button - Push to right if needed, or keep inline */
.woocommerce-cart button[name='update_cart'] {
    margin-left: auto !important; /* Push to far right */
}

/* Mobile Stack */
@media (max-width: 768px) {
    .woocommerce-cart .actions {
        flex-direction: column !important;
        align-items: stretch !important;
    }
    .woocommerce-cart .coupon {
        flex-direction: column !important;
        align-items: stretch !important;
        max-width: 100% !important;
    }
    .woocommerce-cart .coupon .input-text {
        width: 100% !important;
    }
    .woocommerce-cart button[name='update_cart'] {
        width: 100% !important;
        margin-left: 0 !important;
    }
}

/* 2. CROSS-SELLS - FORCE BOTTOM & LEFT */
.cart-collaterals {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
}

/* Move Cart Totals to Top of Collaterals (Right aligned visually, but block flow) */
.cart_totals {
    order: 1 !important;
    width: 100% !important;
    max-width: 500px !important;
    margin-left: auto !important;
    margin-bottom: 4rem !important;
}

/* Move Cross-Sells to Bottom (Order 2) & Full Width */
.cross-sells {
    order: 2 !important;
    width: 100% !important;
    float: none !important;
    display: block !important;
    clear: both !important;
    margin-top: 2rem !important;
}

.cross-sells > h2 {
    text-align: left !important; /* Force Left Align Title */
    font-size: 2rem !important;
    border-bottom: 2px solid var(--neon-pink);
    display: inline-block;
    padding-bottom: 0.5rem;
    margin-bottom: 2rem !important;
}

/* Grid Layout for Cross-Sells */
.cross-sells ul.products {
    display: grid !important;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)) !important;
    gap: 2rem !important;
    width: 100% !important;
    margin: 0 !important;
    justify-content: start !important; /* Align Items Left */
}

/* Cart cleanup: align products left and tighten actions */
.woocommerce-cart .woocommerce-cart-form__contents {
    table-layout: auto;
}

.woocommerce-cart .woocommerce-cart-form__contents th,
.woocommerce-cart .woocommerce-cart-form__contents td {
    text-align: left;
}

.woocommerce-cart .product-remove {
    width: 40px;
}

.woocommerce-cart .product-thumbnail {
    width: 110px;
    text-align: left !important;
}

.woocommerce-cart .product-name {
    width: 45%;
    text-align: left !important;
}

.woocommerce-cart .product-price,
.woocommerce-cart .product-subtotal {
    text-align: right !important;
    white-space: nowrap;
}

.woocommerce-cart .product-quantity {
    text-align: center !important;
}

.woocommerce-cart .actions {
    justify-content: flex-start !important;
}

.woocommerce-cart .custom-actions-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
}

.woocommerce-cart .custom-actions-wrapper .coupon-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
}

.woocommerce-cart .custom-actions-wrapper button[name='update_cart'] {
    margin-left: 0 !important;
}

/* =========================================
   MOBILE IMAGE OPTIMIZATION (GEO/LCP FIX)
   ========================================= */
@media (max-width: 768px) {
    /* Hero Background fallback if picture tag fails */
    .hero-bg-img {
        content: url('assets/images/bg-miami-mobile.webp');
    }

    /* Category Cards - Mobile Backgrounds */
    .cat-cars::before {
        background-image: url('assets/images/cat-cars-mobile.webp') !important;
    }
    .cat-bikes::before {
        background-image: url('assets/images/cat-bikes-mobile.webp') !important;
    }
    .cat-trucks::before {
        background-image: url('assets/images/cat-trucks-mobile.webp') !important;
    }
    .cat-vanilla::before {
        background-image: url('assets/images/cat-vanilla-mobile.webp') !important;
    }
    .cat-packs::before {
        background-image: url('assets/images/cat-packs-mobile.webp') !important;
    }
    .cat-maps::before {
        background-image: url('assets/images/cat-maps-mobile.webp') !important;
    }
    .cat-peds::before {
        background-image: url('assets/images/cat-peds-mobile.webp') !important;
    }
    .cat-custom::before {
        background-image: url('assets/images/cat-custom-mobile.webp') !important;
    }
}


/* =========================================
   FIX: HIDE DEFAULT WORDPRESS PAGE TITLES
   (Removes the ugly 'FAQ' text at top left)
   ========================================= */
.page .entry-header .entry-title,
.page .ast-single-post .entry-title,
.page h1.entry-title {
    display: none !important;
}


/* =========================================
   REFUND POLICY & LEGAL PAGES STYLING
   ========================================= */
.legal-page-container {
    max-width: 900px;
    margin: 120px auto 4rem;
    padding: 3rem;
    background: rgba(15, 15, 30, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 0, 255, 0.2);
    border-radius: 16px;
    color: #e0e0e0;
    line-height: 1.8;
}

.legal-header {
    text-align: center;
    margin-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 2rem;
}

.legal-header h1 {
    font-size: 4rem;
    color: #fff;
    text-shadow: 0 0 20px var(--neon-pink), 0 0 40px rgba(255, 0, 255, 0.5);
    margin-bottom: 0.5rem;
    font-weight: 800;
}

.last-updated {
    color: var(--neon-cyan);
    font-family: var(--font-heading);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

.legal-content h2 {
    color: #fff;
    font-size: 2.2rem;
    margin: 3.5rem 0 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    text-shadow: 0 0 10px var(--neon-cyan);
    border-bottom: 2px solid var(--neon-cyan);
    display: inline-block;
    padding-bottom: 5px;
}

.legal-content h2::before {
    content: '>> ';
    color: var(--neon-pink);
    text-shadow: 0 0 10px var(--neon-pink);
}

.policy-section ul {
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.policy-section li {
    margin-bottom: 0.8rem;
}

.highlight-box {
    background: rgba(0, 255, 255, 0.05);
    border-left: 4px solid var(--neon-cyan);
    padding: 1.5rem;
    margin: 2rem 0;
}

.alert-box {
    background: rgba(255, 0, 255, 0.05);
    border-left: 4px solid var(--neon-pink);
    padding: 1.5rem;
    margin: 2rem 0;
}

.contact-links {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
}

.contact-btn {
    flex: 1;
    text-align: center;
    padding: 1rem;
    background: transparent;
    border: 2px solid var(--neon-cyan);
    color: var(--neon-cyan);
    text-transform: uppercase;
    font-weight: 700;
    font-family: var(--font-heading);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.contact-btn:hover {
    background: var(--neon-cyan);
    color: #000;
    box-shadow: 0 0 20px var(--neon-cyan);
}

.discord-btn {
    border-color: #7289da;
    color: #7289da;
}

.discord-btn:hover {
    background: #7289da;
    color: #fff;
    box-shadow: 0 0 20px #7289da;
}

@media (max-width: 768px) {
    .legal-page-container {
        padding: 1.5rem;
        margin-top: 100px;
    }
    .contact-links {
        flex-direction: column;
    }
}


/* =========================================
   GEO / AI TECH SPECS (Neon Table)
   ========================================= */
.fivem-tech-specs {
    background: rgba(10, 10, 20, 0.6);
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 6px;
    padding: 0.8rem 1.2rem;
    margin: 1rem 0;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.05);
    max-width: 400px;
}

.specs-title {
    color: var(--neon-cyan);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 1px solid rgba(0, 255, 255, 0.2);
    padding-bottom: 0.3rem;
    text-shadow: 0 0 5px var(--neon-cyan);
}

.specs-grid {
    display: grid;
    gap: 0.3rem;
}

.spec-row {
    display: flex;
    justify-content: space-between;
    padding: 0.3rem 0;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.05);
    font-size: 0.85rem;
}

.spec-row:last-child {
    border-bottom: none;
}

.spec-label {
    color: var(--text-muted);
}

.spec-value {
    color: #fff;
    font-weight: 600;
    text-align: right;
}

.spec-green {
    color: #00ff00 !important;
    text-shadow: 0 0 5px #00ff00;
}

.spec-yellow {
    color: #ffaa00 !important;
    text-shadow: 0 0 5px #ffaa00;
}


/* =========================================
   NEON PROMO BAR STYLES
   ========================================= */
.neon-promo-bar {
    background: linear-gradient(90deg, #0f0f24, #2a0a2a);
    border-bottom: 2px solid #ff00ff;
    color: #fff;
    text-align: center;
    padding: 10px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99999;
    box-shadow: 0 0 15px rgba(255, 0, 255, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Rajdhani', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    height: 50px;
}

.promo-content {
    display: flex;
    align-items: center;
    gap: 10px;
}

.promo-text {
    font-size: 1rem;
    font-weight: 600;
}

.neon-code {
    color: #00ffff;
    text-shadow: 0 0 10px #00ffff, 0 0 20px #00ffff;
    font-size: 1.2em;
    margin: 0 5px;
    animation: neonPulse 1.5s infinite alternate;
}

@keyframes neonPulse {
    from { text-shadow: 0 0 10px #00ffff; }
    to { text-shadow: 0 0 20px #00ffff, 0 0 30px #00ffff; }
}

#close-promo {
    background: transparent;
    border: none;
    color: #fff;
    font-size: 1.2rem;
    position: absolute;
    right: 20px;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.3s;
    padding: 0 10px;
}

#close-promo:hover {
    opacity: 1;
    color: #ff00ff;
    text-shadow: 0 0 10px #ff00ff;
}

/* Adjust Site Header when Promo Bar is Active */
body.has-promo-bar .site-header {
    top: 50px !important; /* Move header down */
}

body.has-promo-bar {
    padding-top: 50px !important; /* Push content down */
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .neon-promo-bar {
        font-size: 0.8rem;
        padding: 5px;
    }
    .promo-icon {
        display: none; /* Save space */
    }
    #close-promo {
        right: 10px;
    }
}

