/* ============================================
   ZAPATERÍA ONLINE - ESTILOS PRINCIPALES
   ============================================ */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Playfair+Display:wght@600;700&family=Permanent+Marker&family=Rubik+Spray+Paint&display=swap');

/* ============================================
   CSS Variables - Design Tokens
   ============================================ */
:root {
    /* Default: Premium Theme */
    --primary: #1a1a2e;
    --primary-light: #16213e;
    --accent: #e94560;
    --accent-hover: #c73e54;
    --gold: #d4a574;
    --gold-light: #e8c9a0;
    --success: #2ecc71;
    --warning: #f39c12;
    --danger: #e74c3c;
    --info: #3498db;
    
    --bg-body: #fafafa;
    --bg-white: #ffffff;
    --bg-light: #f8f9fa;
    --bg-dark: #1a1a2e;
    --bg-card: #ffffff;
    --bg-overlay: rgba(255,255,255,0.8);
    
    --text-primary: #1a1a2e;
    --text-secondary: #6c757d;
    --text-muted: #adb5bd;
    --text-white: #ffffff;
    --text-accent: #e94560;
    --text-glow: none;
    
    --border-color: #e9ecef;
    --border-radius: 12px;
    --border-radius-sm: 8px;
    --border-radius-lg: 20px;
    --border-radius-pill: 50px;
    
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.12);
    --shadow-hover: 0 12px 48px rgba(0,0,0,0.15);
    --neon-glow: none;
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.15s ease;
    
    --font-primary: 'Inter', -apple-system, sans-serif;
    --font-heading: 'Playfair Display', serif;
    --font-street: 'Permanent Marker', cursive;
    --font-banner: 'Rubik Spray Paint', cursive;
    
    --navbar-height: 72px;
}



/* Character Hero Styles */
.hero-character-wrapper {
    position: relative;
    display: inline-block;
    padding: 20px;
    animation: floatCharacter 6s ease-in-out infinite;
}

.hero-character-img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 0 30px rgba(255, 0, 255, 0.4));
    position: relative;
    z-index: 2;
}

.neon-circle-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(0, 229, 255, 0.2) 0%, transparent 70%);
    z-index: 1;
    border-radius: 50%;
    animation: pulseGlow 4s ease-in-out infinite;
}

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

@keyframes pulseGlow {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
    50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.8; }
}



/* ============================================
   Reset & Base
   ============================================ */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    background-color: var(--bg-body);
    color: var(--text-primary);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ============================================
   Typography
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 700;
    line-height: 1.3;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--gold));
    border-radius: 2px;
}

/* ============================================
   Navbar
   ============================================ */
.navbar-custom {
    background: var(--bg-white);
    box-shadow: var(--shadow-sm);
    padding: 0.5rem 0;
    transition: var(--transition);
    height: var(--navbar-height);
    z-index: 1050;
}

.navbar-custom.scrolled {
    box-shadow: var(--shadow-md);
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(20px);
}

.navbar-brand-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary) !important;
    letter-spacing: -0.5px;
}

.navbar-brand-text span {
    color: var(--accent);
}

.navbar-custom .nav-link {
    color: var(--text-primary) !important;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.5rem 1rem !important;
    transition: var(--transition-fast);
    position: relative;
}

.navbar-custom .nav-link:hover,
.navbar-custom .nav-link.active {
    color: var(--accent) !important;
}

.navbar-custom .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: var(--transition);
    transform: translateX(-50%);
}

.navbar-custom .nav-link:hover::after,
.navbar-custom .nav-link.active::after {
    width: 60%;
}

.cart-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--accent);
    color: white;
    font-size: 0.65rem;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    transform: translate(25%, -25%);
}

/* ============================================
   Hero Section
   ============================================ */
.hero-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 50%, #0f3460 100%);
    min-height: calc(80vh - var(--navbar-height));
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 80%;
    height: 200%;
    background: radial-gradient(circle, rgba(233,69,96,0.15) 0%, transparent 70%);
    animation: heroGlow 8s ease-in-out infinite;
}

@keyframes heroGlow {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-5%, 5%) scale(1.1); }
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    line-height: 1.15;
    margin-bottom: 1.5rem;
}

.hero-title span {
    color: var(--gold);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.8);
    font-weight: 300;
    margin-bottom: 2rem;
}

/* ============================================
   Buttons
   ============================================ */
.btn-primary-custom {
    background: linear-gradient(135deg, var(--accent), #d63a50);
    border: none;
    color: white;
    padding: 0.75rem 2rem;
    border-radius: var(--border-radius-pill);
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(233,69,96,0.3);
}

.btn-primary-custom:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(233,69,96,0.4);
    color: white;
    background: linear-gradient(135deg, #d63a50, var(--accent));
}

.btn-outline-custom {
    border: 2px solid var(--gold);
    color: var(--gold);
    padding: 0.7rem 2rem;
    border-radius: var(--border-radius-pill);
    font-weight: 600;
    background: transparent;
    transition: var(--transition);
}

.btn-outline-custom:hover {
    background: var(--gold);
    color: var(--primary);
    transform: translateY(-2px);
}

.btn-dark-custom {
    background: var(--primary);
    border: none;
    color: white;
    padding: 0.75rem 2rem;
    border-radius: var(--border-radius-pill);
    font-weight: 600;
    transition: var(--transition);
}

.btn-dark-custom:hover {
    background: var(--primary-light);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-color);
    background: white;
    color: var(--text-primary);
    transition: var(--transition);
}

.btn-icon:hover {
    background: var(--accent);
    color: white;
    border-color: var(--accent);
    transform: scale(1.1);
}

/* ============================================
   Product Cards
   ============================================ */
.product-card {
    background: var(--bg-card);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--border-color);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: transparent;
}

.product-card .card-img-wrapper {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/4;
    background: var(--bg-light);
}

.product-card .card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card:hover .card-img-wrapper img {
    transform: scale(1.08);
}

.product-card .card-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
}

.badge-sale {
    background: var(--accent);
    color: white;
    padding: 4px 12px;
    border-radius: var(--border-radius-pill);
    font-size: 0.75rem;
    font-weight: 700;
}

.badge-new {
    background: var(--success);
    color: white;
    padding: 4px 12px;
    border-radius: var(--border-radius-pill);
    font-size: 0.75rem;
    font-weight: 700;
}

.product-card .card-actions {
    position: absolute;
    top: 12px;
    right: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    opacity: 0;
    transform: translateX(10px);
    transition: var(--transition);
}

.product-card:hover .card-actions {
    opacity: 1;
    transform: translateX(0);
}

.product-card .card-body {
    padding: 1.2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-card .brand-name {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.product-card .product-name {
    font-weight: 600;
    font-size: 1rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-card .product-name a {
    color: inherit;
    text-decoration: none;
}

.product-card .product-name a:hover {
    color: var(--accent);
}

.product-card .product-price {
    margin-top: auto;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.price-current {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
}

.price-original {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-decoration: line-through;
}

.price-discount {
    font-size: 0.8rem;
    color: var(--accent);
    font-weight: 600;
}

/* ============================================
   Category Cards
   ============================================ */
.category-card {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: var(--border-radius);
    padding: 2rem 1.5rem;
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    min-height: 140px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--accent), transparent);
    opacity: 0;
    transition: var(--transition);
}

.category-card:hover::before {
    opacity: 0.3;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.category-card h5 {
    color: white;
    font-weight: 600;
    margin-bottom: 0.25rem;
    position: relative;
    z-index: 1;
}

.category-card small {
    color: var(--gold-light);
    position: relative;
    z-index: 1;
}

.category-card .category-icon {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
}

/* ============================================
   Product Detail
   ============================================ */
.product-detail-gallery {
    border-radius: var(--border-radius);
    overflow: hidden;
    background: var(--bg-light);
}

.product-detail-gallery img {
    width: 100%;
    height: auto;
    object-fit: contain;
    max-height: 500px;
}

.product-gallery-thumbs {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.product-gallery-thumbs img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: var(--border-radius-sm);
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition-fast);
}

.product-gallery-thumbs img:hover,
.product-gallery-thumbs img.active {
    border-color: var(--accent);
}

.size-selector {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.size-btn {
    width: 50px;
    height: 42px;
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    background: white;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
    justify-content: center;
}

.size-btn:hover {
    border-color: var(--primary);
}

.size-btn.active {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}

.size-btn.disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.color-selector {
    display: flex;
    gap: 10px;
}

.color-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 3px solid transparent;
    cursor: pointer;
    transition: var(--transition-fast);
    box-shadow: var(--shadow-sm);
}

.color-btn:hover,
.color-btn.active {
    border-color: var(--primary);
    transform: scale(1.15);
}

/* ============================================
   Cart
   ============================================ */
.cart-item {
    background: var(--bg-card);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    margin-bottom: 1rem;
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: var(--transition);
}

.cart-item:hover {
    box-shadow: var(--shadow-md);
}

.cart-item img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: var(--border-radius-sm);
}

.cart-summary {
    background: var(--bg-card);
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--shadow-md);
    position: sticky;
    top: calc(var(--navbar-height) + 20px);
}

.qty-control {
    display: flex;
    align-items: center;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    overflow: hidden;
}

.qty-control button {
    width: 36px;
    height: 36px;
    border: none;
    background: transparent;
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition-fast);
}

.qty-control button:hover {
    background: var(--bg-light);
}

.qty-control input {
    width: 50px;
    height: 36px;
    text-align: center;
    border: none;
    border-left: 1px solid var(--border-color);
    border-right: 1px solid var(--border-color);
    font-weight: 600;
}

/* ============================================
   Footer
   ============================================ */
.footer {
    background: var(--bg-dark);
    color: rgba(255,255,255,0.8);
    padding: 4rem 0 2rem;
}

.footer h5 {
    color: white;
    font-weight: 700;
    margin-bottom: 1.2rem;
    font-size: 1.1rem;
}

.footer a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: var(--transition-fast);
    display: block;
    padding: 0.2rem 0;
}

.footer a:hover {
    color: var(--gold);
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 1.5rem;
    margin-top: 2rem;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* ============================================
   Flash Messages
   ============================================ */
.flash-message {
    position: fixed;
    top: calc(var(--navbar-height) + 10px);
    right: 20px;
    z-index: 9999;
    min-width: 300px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    animation: slideInRight 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
}

@keyframes slideInRight {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

/* ============================================
   Auth Forms
   ============================================ */
.auth-container {
    max-width: 480px;
    margin: 2rem auto;
}

.auth-card {
    background: var(--bg-card);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    padding: 3rem;
    border: 1px solid var(--border-color);
}

.auth-card .form-control {
    border-radius: var(--border-radius-sm);
    padding: 0.75rem 1rem;
    border: 1.5px solid var(--border-color);
    transition: var(--transition-fast);
}

.auth-card .form-control:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(233,69,96,0.1);
}

/* ============================================
   General Form Styling
   ============================================ */
.form-control, .form-select {
    border-radius: var(--border-radius-sm);
    border: 1.5px solid var(--border-color);
    padding: 0.6rem 1rem;
    transition: var(--transition-fast);
    font-family: var(--font-primary);
}

.form-control:focus, .form-select:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(233,69,96,0.08);
}

/* ============================================
   Checkout
   ============================================ */
.checkout-steps {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
    gap: 0;
}

.checkout-step {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    color: var(--text-muted);
    font-weight: 500;
}

.checkout-step.active {
    color: var(--accent);
    font-weight: 600;
}

.checkout-step .step-number {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 700;
}

.checkout-step.active .step-number {
    background: var(--accent);
    color: white;
}

/* ============================================
   Pagination
   ============================================ */
.pagination .page-link {
    border-radius: var(--border-radius-sm);
    margin: 0 3px;
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    font-weight: 500;
    padding: 0.5rem 0.85rem;
    transition: var(--transition-fast);
}

.pagination .page-link:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: white;
}

.pagination .page-item.active .page-link {
    background: var(--accent);
    border-color: var(--accent);
}

/* ============================================
   Animations
   ============================================ */
.fade-in {
    animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(15px); }
    to { opacity: 1; transform: translateY(0); }
}

.slide-up {
    animation: slideUp 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .cart-item {
        flex-direction: column;
        text-align: center;
    }
    
    .auth-card {
        padding: 2rem;
        margin: 1rem;
    }
    
    .product-card .card-actions {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ============================================
   Utilities
   ============================================ */
.text-gold { color: var(--gold); }
.text-accent { color: var(--accent); }
.bg-primary-custom { background: var(--primary); }
.bg-accent { background: var(--accent); }

.no-img-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--bg-light), #e9ecef);
    color: var(--text-muted);
    font-size: 3rem;
}

.empty-state {
    text-align: center;
    padding: 4rem 2rem;
    color: var(--text-secondary);
}

.empty-state i {
    font-size: 4rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.breadcrumb {
    background: transparent;
    padding: 0.5rem 0;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: var(--text-secondary);
    text-decoration: none;
}

.breadcrumb a:hover {
    color: var(--accent);
}

/* Scrollbar Custom */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-light);
}

::-webkit-scrollbar-thumb {
    background: var(--text-muted);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--text-secondary);
}

/* ============================================
   STREET / NEON THEME OVERRIDES (FIN)
   ============================================ */
body.theme-neon {
    --primary: #000000 !important;
    --primary-light: #121212 !important;
    --accent: #ff00ff !important;
    --accent-hover: #fa00ff !important;
    --gold: #00e5ff !important;
    --gold-light: #00ffff !important;
    --success: #39ff14 !important;
    --warning: #fff700 !important;
    --info: #9d00ff !important;
    
    --bg-body: #0a0a0a !important;
    --bg-white: #111111 !important;
    --bg-light: #1a1a1a !important;
    --bg-dark: #000000 !important;
    --bg-card: rgba(18,18,18,0.95) !important;
    --bg-overlay: rgba(0,0,0,0.9) !important;

    --text-primary: #f0f0f0 !important;
    --text-secondary: #aaaaaa !important;
    --text-muted: #666666 !important;
    --text-white: #ffffff !important;
    --text-accent: #ff00ff !important;
    --text-glow: 0 0 8px rgba(255,0,255,0.8), 0 0 20px rgba(255,0,255,0.4) !important;
    
    --border-color: #333333 !important;
    --shadow-md: 0 4px 20px rgba(255,0,255,0.15) !important;
    --neon-glow: 0 0 15px rgba(255,0,255,0.6) !important;
    
    --font-primary: " Inter\, -apple-system, sans-serif !important;
 --font-heading: \Permanent Marker\, cursive !important;
 
 background: #000 url(\../img/brick-wall-neon.webp\) fixed center !important;
 background-size: cover !important;
}

body.theme-neon h1, 
body.theme-neon h2, 
body.theme-neon h3,
body.theme-neon h4,
body.theme-neon h5,
body.theme-neon h6,
body.theme-neon .hero-title,
body.theme-neon .section-title,
body.theme-neon .navbar-brand-text {
 text-shadow: var(--text-glow) !important;
 font-family: \Permanent Marker\, cursive !important;
}

body.theme-neon .hero-section {
 background: linear-gradient(135deg, rgba(0,0,0,0.85) 0%, rgba(18,18,18,0.5) 100%) !important;
 padding-top: 120px !important;
}

body.theme-neon .hero-title span {
 color: var(--gold) !important;
 text-shadow: 0 0 10px rgba(0,229,255,0.8) !important;
}

body.theme-neon .hero-subtitle {
 color: #00e5ff !important;
 text-shadow: 0 0 5px rgba(0,229,255,0.5) !important;
}

body.theme-neon .btn-primary-custom {
 box-shadow: 0 0 20px rgba(255,0,255,0.6) !important;
 border: 2px solid #fff !important;
 background: #ff00ff !important;
}

body.theme-neon .btn-outline-custom {
 color: #00e5ff !important;
 border-color: #00e5ff !important;
 box-shadow: 0 0 15px rgba(0,229,255,0.4) !important;
}

body.theme-neon .navbar-custom {
 background: rgba(0,0,0,0.95) !important;
 border-bottom: 2px solid #333 !important;
}

body.theme-neon .footer {
 background: #000 !important;
 border-top: 2px solid #333 !important;
}


/* ============================================
   ULTIMATE NEON FIX - PRIORITY OVERRIDE
   ============================================ */
body.theme-neon {
    --primary: #ffffff !important;
    --primary-light: #222222 !important;
    --bg-body: #000000 !important;
    background: #000 url(" ../img/brick-wall-neon.png\) fixed center !important;
 background-size: cover !important;
}

body.theme-neon .hero-section {
 background: rgba(0,0,0,0.6) !important;
 background-image: none !important;
}

body.theme-neon h1, 
body.theme-neon h2, 
body.theme-neon h3,
body.theme-neon h4,
body.theme-neon .hero-title,
body.theme-neon .navbar-brand-text {
 font-family: \Permanent Marker\, cursive !important;
 color: #ffffff !important;
 text-shadow: 0 0 10px rgba(255,255,255,0.3) !important;
}

body.theme-neon .navbar-brand-text span {
 color: var(--accent) !important;
}

body.theme-neon .hero-title span {
 color: var(--gold) !important;
}

body.theme-neon .navbar-custom {
 background: rgba(0,0,0,0.9) !important;
}

