/* ========================================
   Looped V2 - Executive UI Polish
   Search-first homepage with refined design system
   ======================================== */

/* CSS Variables - 8pt Spacing System */
:root {
    /* Colors */
    --neon-lime: #CAFF00;
    --neon-lime-hover: #B8EA00;
    --bg-dark: #0D0D0D;
    --bg-darker: #0A0A0A;
    --card-bg: #1A1A1A;
    --text-primary: #FFFFFF;
    --text-secondary: #B3B3B3;
    
    /* Spacing (8pt system) */
    --space-1: 8px;
    --space-2: 16px;
    --space-3: 24px;
    --space-4: 32px;
    --space-5: 40px;
    --space-6: 48px;
    --space-8: 64px;
    --space-10: 80px;
    
    /* Radius */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-pill: 50px;
    
    /* Typography */
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* Typography System */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    letter-spacing: -0.01em;
}

h1, h2, h3, h4 {
    letter-spacing: -0.02em;
    font-weight: 700;
}

/* Header - Translucent with blur and thin border */
.navbar.navbar-dark.fixed-top {
    background: rgba(13, 13, 13, 0.75) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(202, 255, 0, 0.1);
    transition: all 0.3s ease;
}

/* Seller Portal Button - Small neon pill */
.btn-seller-portal {
    background: linear-gradient(135deg, var(--neon-lime) 0%, #A3FF12 100%);
    color: #1A1A1A !important;
    font-weight: 600;
    font-size: 14px;
    padding: 10px 20px !important;
    border-radius: var(--radius-pill);
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(202, 255, 0, 0.15);
}

.btn-seller-portal:hover {
    background: linear-gradient(135deg, var(--neon-lime-hover) 0%, #92EA00 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(202, 255, 0, 0.25);
    color: #1A1A1A !important;
}

.btn-seller-portal i {
    color: #1A1A1A;
}

/* Hero Section */
.unified-hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: 
        linear-gradient(135deg, #FF5F6D 0%, #FFC371 50%, #A3FF12 100%),
        url('https://images.unsplash.com/photo-1516450360452-9312f5e86fc7?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80'),
        url('https://images.unsplash.com/photo-1571019613454-1cb2f99b2d8b?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay, normal, multiply;
    padding: 120px 0 var(--space-10);
}

.unified-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle 40% at 30% 20%, rgba(255, 95, 109, 0.3) 0%, transparent 60%),
        radial-gradient(circle 35% at 70% 30%, rgba(255, 195, 113, 0.25) 0%, transparent 55%),
        radial-gradient(circle 30% at 20% 80%, rgba(202, 255, 0, 0.25) 0%, transparent 50%);
    mix-blend-mode: overlay;
    z-index: 1;
}

.unified-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.5) 60%, rgba(0,0,0,0.75) 100%);
    z-index: 2;
}

.unified-hero .hero-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
    margin: 0 auto;
}

/* H1 - Clean sans-serif, bold and impactful */
.hero-title-v2 {
    color: var(--text-primary);
    font-size: clamp(28px, 5vw, 56px);
    font-weight: 700;
    margin-bottom: 32px;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
    letter-spacing: -0.02em;
    line-height: 1.2;
    font-family: var(--font-body);
}

/* Search Bar - Enhanced prominence and visual impact */
.search-bar-unified {
    max-width: 750px;
    margin: 0 auto 40px;
    padding: 0 var(--space-2);
}

.search-form-unified {
    width: 100%;
    display: flex;
    justify-content: center;
    position: relative; /* Anchor for dropdown positioning */
    flex-direction: column;
    align-items: center;
}

.search-input-group {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    border-radius: var(--radius-pill);
    padding: 8px;
    box-shadow: 
        0 12px 48px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.1) inset,
        0 2px 12px rgba(255, 255, 255, 0.15) inset;
    gap: var(--space-1);
    transition: all 0.3s ease;
}

.search-input-group:hover {
    box-shadow: 
        0 16px 56px rgba(0, 0, 0, 0.35),
        0 0 0 1px rgba(255, 255, 255, 0.15) inset,
        0 2px 16px rgba(255, 255, 255, 0.2) inset;
    transform: translateY(-2px);
}

.search-icon {
    padding: 0 16px 0 20px;
    color: #666;
    font-size: 20px;
}

.search-input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 16px var(--space-2);
    font-size: 16px;
    color: #1A1A1A;
    outline: none;
    font-family: var(--font-body);
    font-weight: 400;
}

.search-input::placeholder {
    color: #999;
}

.search-sort {
    border: none;
    background: rgba(26, 26, 26, 0.06);
    color: #1A1A1A;
    padding: 14px 18px;
    border-radius: 24px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    outline: none;
    min-width: 160px;
    font-family: var(--font-body);
    transition: all 0.2s ease;
}

.search-sort:focus {
    background: rgba(26, 26, 26, 0.1);
}

.btn-search-unified {
    background: linear-gradient(135deg, var(--neon-lime) 0%, #A3FF12 100%);
    color: #1A1A1A;
    border: none;
    padding: 14px 28px;
    border-radius: 24px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(202, 255, 0, 0.2);
    font-family: var(--font-body);
}

.btn-search-unified:hover {
    background: linear-gradient(135deg, var(--neon-lime-hover) 0%, #92EA00 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(202, 255, 0, 0.3);
}

/* V2 Button System - Enhanced hierarchy and spacing */
.hero-actions-v2 {
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 8px;
}

.btn-v2 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: var(--radius-pill);
    transition: all 0.2s ease;
    text-decoration: none;
    font-family: var(--font-body);
    min-width: 200px;
}

.btn-primary-v2 {
    background: linear-gradient(135deg, var(--neon-lime) 0%, #A3FF12 100%);
    color: #1A1A1A;
    box-shadow: 0 4px 16px rgba(202, 255, 0, 0.3);
    border: none;
}

.btn-primary-v2:hover {
    background: linear-gradient(135deg, var(--neon-lime-hover) 0%, #92EA00 100%);
    color: #1A1A1A;
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 24px rgba(202, 255, 0, 0.4);
}

.btn-secondary-v2 {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.btn-secondary-v2:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(255, 255, 255, 0.15);
}

/* Events Section */
.events-section-unified {
    padding: var(--space-10) 0;
    background: var(--bg-dark);
}

.section-title-unified {
    color: var(--text-primary);
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 700;
    margin-bottom: 0;
}

/* Event Cards - 16px radius, refined styling */
.event-card-unified {
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all 0.25s ease;
    height: 100%;
}

.event-card-unified:hover {
    transform: translateY(-6px);
    border-color: rgba(202, 255, 0, 0.25);
    box-shadow: 0 12px 32px rgba(202, 255, 0, 0.12);
}

.event-card-unified .card-img-top {
    height: 220px;
    object-fit: cover;
    aspect-ratio: 16/9;
}

.event-card-unified .card-body {
    padding: var(--space-3);
}

.card-title-unified {
    color: var(--text-primary);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: var(--space-2);
    line-height: 1.3;
}

.event-card-unified .card-text {
    color: var(--text-secondary);
    font-size: 14px;
    margin-bottom: var(--space-2);
    line-height: 1.5;
}

.event-card-unified .card-text i {
    color: var(--neon-lime);
}

.event-meta-unified {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-2);
}

.event-date-unified {
    color: var(--neon-lime);
    font-weight: 600;
    font-size: 13px;
}

.ticket-price-unified .price {
    font-size: 22px;
    font-weight: 700;
    color: var(--neon-lime);
}

/* Event Card Buttons */
.btn-primary-unified, .btn-warning-unified {
    font-weight: 600;
    padding: 10px 20px;
    border-radius: var(--radius-sm);
    transition: all 0.2s ease;
    font-size: 14px;
}

.btn-primary-unified {
    background: linear-gradient(135deg, var(--neon-lime) 0%, #A3FF12 100%);
    border: none;
    color: #1A1A1A;
}

.btn-primary-unified:hover {
    background: linear-gradient(135deg, var(--neon-lime-hover) 0%, #92EA00 100%);
    color: #1A1A1A;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(202, 255, 0, 0.25);
}

.btn-warning-unified {
    background: linear-gradient(135deg, #FFC371 0%, #FF5F6D 100%);
    border: none;
    color: #FFFFFF;
}

.btn-warning-unified:hover {
    background: linear-gradient(135deg, #FFB161 0%, #FF4F5D 100%);
    color: #FFFFFF;
    transform: translateY(-1px);
}

/* Trust Section - Below the fold only */
.trust-section-v2 {
    background: var(--bg-darker);
    padding: var(--space-5) 0;
    border-top: 1px solid rgba(202, 255, 0, 0.08);
}

.trust-content-v2 {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--space-6);
    flex-wrap: wrap;
}

.trust-item-v2 {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-primary);
    font-size: 15px;
    font-weight: 500;
}

.trust-item-v2 i {
    color: var(--neon-lime);
    font-size: 20px;
}

/* Empty State */
.empty-state-unified {
    max-width: 600px;
    margin: var(--space-8) auto;
    padding: var(--space-8) var(--space-3);
}

.empty-state-unified .empty-icon i {
    color: #666;
    opacity: 0.3;
}

.empty-state-unified h3 {
    color: var(--text-primary);
    margin-bottom: var(--space-2);
    font-size: 24px;
}

.empty-state-unified p {
    color: var(--text-secondary);
    font-size: 15px;
}

.empty-actions-v2 {
    display: flex;
    gap: var(--space-2);
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-top: var(--space-4);
}

/* Status Badges */
.ticket-status {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 2;
    padding: 6px 12px;
    border-radius: 16px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-live {
    background: linear-gradient(135deg, var(--neon-lime) 0%, #A3FF12 100%);
    color: #1A1A1A;
}

.status-sold-out {
    background: linear-gradient(45deg, #ff4757, #ff6b7d);
    color: white;
}

.status-upcoming {
    background: linear-gradient(45deg, #FFC371, #FF5F6D);
    color: white;
}

.status-coming {
    background: linear-gradient(45deg, #28a745, #20c997);
    color: white;
}

/* Real-time update animations */
.updated {
    animation: highlight 0.8s ease-in-out;
}

@keyframes highlight {
    0% { background-color: transparent; }
    50% { background-color: rgba(202, 255, 0, 0.08); }
    100% { background-color: transparent; }
}

/* Urgency indicators */
.urgency-count {
    font-weight: 700;
    color: #ff6b6b;
    animation: urgencyPulse 2s infinite;
}

.available-text {
    font-weight: 500;
    color: var(--neon-lime);
}

@keyframes urgencyPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

.btn-v2:focus-visible,
.btn-search-unified:focus-visible,
.search-input:focus-visible,
.search-sort:focus-visible {
    outline: 2px solid var(--neon-lime);
    outline-offset: 2px;
}

/* Verified Seller Badge */
.verified-seller-badge {
    display: flex;
    align-items: center;
    gap: 4px;
    color: #28a745;
    font-size: 0.85rem;
    margin-top: 8px;
}

.verified-seller-badge i {
    font-size: 0.9rem;
}

.verified-seller-badge small {
    font-weight: 500;
}

/* Search Autocomplete Dropdown - Desktop Only */
.search-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 750px;
    background: #1A1A1A;
    border: 1px solid rgba(202, 255, 0, 0.2);
    border-radius: 12px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6);
    max-height: 450px;
    overflow-y: auto;
    z-index: 1000;
    animation: slideDown 0.2s ease;
}

/* Desktop: Hide CTAs when search is active */
@media (min-width: 768px) {
    .hero-content.search-active .hero-actions-v2 {
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: opacity 0.2s ease, visibility 0.2s ease;
    }
    
    /* Enhanced elevation when search dropdown is visible */
    .hero-content.search-active .search-input-group {
        box-shadow: 
            0 20px 60px rgba(0, 0, 0, 0.4),
            0 0 0 2px rgba(202, 255, 0, 0.15) inset,
            0 4px 20px rgba(255, 255, 255, 0.2) inset;
    }
}

/* Loading state styling */
.search-loading {
    text-align: center;
    padding: 32px 20px;
    color: #B3B3B3;
}

.search-loading-spinner {
    display: inline-block;
    width: 24px;
    height: 24px;
    border: 2px solid rgba(202, 255, 0, 0.2);
    border-top-color: var(--neon-lime);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin-bottom: 12px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.search-loading-text {
    font-size: 14px;
    color: #B3B3B3;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.search-results-header {
    padding: 12px 16px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    color: #B3B3B3;
    letter-spacing: 0.5px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.search-result-item {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    text-decoration: none;
    color: #FFFFFF;
    transition: background 0.2s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.search-result-item:last-child {
    border-bottom: none;
}

.search-result-item:hover {
    background: rgba(202, 255, 0, 0.1);
}

.search-result-item.sold-out {
    opacity: 0.8;
}

.search-result-item.sold-out:hover {
    opacity: 1;
}

.search-result-image {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    background-size: cover;
    background-position: center;
    flex-shrink: 0;
    margin-right: 12px;
}

.search-result-content {
    flex: 1;
    min-width: 0;
}

.search-result-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 4px;
}

.search-result-title {
    font-weight: 600;
    font-size: 14px;
    color: #FFFFFF;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.badge-live,
.badge-upcoming,
.badge-sold-out,
.badge-available {
    font-size: 10px;
    padding: 2px 8px;
    border-radius: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.badge-live {
    background: var(--neon-lime);
    color: #0D0D0D;
}

.badge-upcoming {
    background: rgba(255, 255, 255, 0.1);
    color: #B3B3B3;
}

.badge-sold-out {
    background: #dc3545;
    color: #FFFFFF;
}

.badge-available {
    background: rgba(40, 167, 69, 0.2);
    color: #28a745;
    font-weight: 500;
}

.search-result-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 12px;
    color: #B3B3B3;
    margin-bottom: 2px;
}

.search-result-venue {
    font-size: 12px;
    color: #B3B3B3;
}

.search-result-action {
    text-align: right;
    flex-shrink: 0;
    margin-left: 16px;
}

.search-result-price {
    font-size: 16px;
    font-weight: 700;
    color: var(--neon-lime);
    margin-bottom: 4px;
    white-space: nowrap;
}

.search-result-cta {
    font-size: 12px;
    color: #B3B3B3;
    font-weight: 500;
    white-space: nowrap;
}

.search-result-item:hover .search-result-cta {
    color: var(--neon-lime);
}

.search-no-results {
    text-align: center;
    padding: 40px 20px;
    color: #B3B3B3;
}

.search-no-results i {
    font-size: 32px;
    color: #6c757d;
    display: block;
}

.search-no-results p {
    margin: 8px 0 4px;
    font-size: 14px;
    font-weight: 600;
    color: #FFFFFF;
}

.search-no-results small {
    font-size: 12px;
    color: #B3B3B3;
}

/* Responsive Design */
@media (max-width: 768px) {
    .unified-hero {
        min-height: 90vh;
        padding: 100px 0 var(--space-6);
    }
    
    .hero-title-v2 {
        font-size: clamp(24px, 5vw, 32px);
    }
    
    .search-input-group {
        flex-direction: column;
        border-radius: var(--radius-md);
        padding: 12px;
    }
    
    .search-input {
        width: 100%;
        padding: 12px;
    }
    
    .search-sort {
        width: 100%;
        border-radius: 12px;
    }
    
    .btn-search-unified {
        width: 100%;
        border-radius: 12px;
    }
    
    .hero-actions-v2 {
        flex-direction: column;
        width: 100%;
    }
    
    .btn-v2 {
        width: 100%;
    }
    
    .section-title-unified {
        font-size: 22px;
    }
    
    .trust-content-v2 {
        gap: var(--space-3);
    }
    
    .trust-item-v2 {
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .unified-hero {
        padding: 80px 0 var(--space-5);
    }
    
    .hero-title-v2 {
        font-size: 24px;
    }
    
    .trust-content-v2 {
        flex-direction: column;
        gap: var(--space-2);
    }
}

@media (min-width: 1440px) {
    .unified-hero {
        min-height: 75vh;
    }
    
    .search-bar-unified {
        max-width: 750px;
    }
}

/* ========================================
   Mobile Search Modal
   Full-page search experience (like Booking.com/TicketSwap)
   ======================================== */

.mobile-search-trigger {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-pill);
    cursor: pointer;
    transition: all 0.2s ease;
}

.mobile-search-trigger:active {
    background: rgba(255, 255, 255, 0.15);
    transform: scale(0.98);
}

.mobile-search-trigger .search-icon {
    color: var(--neon-lime);
    font-size: 18px;
}

.mobile-search-trigger .search-placeholder {
    color: var(--text-secondary);
    font-size: 15px;
}

/* Hide navbar when mobile search is active */
body.mobile-search-open .navbar {
    display: none !important;
}

.mobile-search-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    height: 100vh;
    height: 100dvh; /* Dynamic viewport height for mobile browsers */
    background: var(--bg-dark);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    transform: translateY(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
    overflow: hidden;
}

.mobile-search-modal.active {
    transform: translateY(0);
}

.mobile-search-header {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: var(--bg-dark);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 10;
}

.mobile-search-back {
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 22px;
    padding: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s ease;
    flex-shrink: 0;
}

.mobile-search-back:active {
    color: var(--neon-lime);
}

.mobile-search-form {
    flex: 1;
    position: relative;
}

.mobile-search-input {
    width: 100%;
    padding: 14px 20px;
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.25);
    border-radius: var(--radius-pill);
    color: var(--text-primary);
    font-size: 16px;
    font-weight: 400;
    outline: none;
    transition: all 0.2s ease;
    -webkit-appearance: none;
}

.mobile-search-input:focus {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--neon-lime);
    box-shadow: 0 0 0 3px rgba(202, 255, 0, 0.1);
}

.mobile-search-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.mobile-search-results {
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 0;
    -webkit-overflow-scrolling: touch;
}

.mobile-suggestions-header {
    padding: 16px 16px 12px 16px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    background: var(--bg-dark);
    position: sticky;
    top: 0;
    z-index: 5;
}

.mobile-search-result-item {
    display: flex;
    gap: 14px;
    padding: 16px;
    background: var(--bg-dark);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    text-decoration: none;
    color: var(--text-primary);
    transition: background 0.15s ease;
    min-height: 100px;
}

.mobile-search-result-item:active {
    background: rgba(255, 255, 255, 0.03);
}

.mobile-result-image {
    width: 88px;
    height: 88px;
    border-radius: 12px;
    background-size: cover;
    background-position: center;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.mobile-result-content {
    flex: 1;
    min-width: 0;
}

.mobile-result-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 8px;
}

.mobile-result-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.4;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    letter-spacing: -0.01em;
}

.mobile-badge-live,
.mobile-badge-upcoming,
.mobile-badge-sold-out,
.mobile-badge-available {
    font-size: 11px;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 12px;
    white-space: nowrap;
    flex-shrink: 0;
}

.mobile-badge-live {
    background: rgba(202, 255, 0, 0.15);
    color: var(--neon-lime);
}

.mobile-badge-upcoming {
    background: rgba(255, 195, 113, 0.15);
    color: #FFC371;
}

.mobile-badge-sold-out {
    background: rgba(255, 95, 109, 0.15);
    color: #FF5F6D;
}

.mobile-badge-available {
    background: rgba(76, 175, 80, 0.15);
    color: #4CAF50;
}

.mobile-waitlist-cta {
    font-size: 11px;
    font-weight: 600;
    background: rgba(255, 195, 113, 0.15);
    color: #FFC371;
    padding: 4px 8px;
    border-radius: 12px;
    margin-left: 6px;
    white-space: nowrap;
}

.mobile-result-meta {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 10px;
}

.mobile-result-meta div {
    font-size: 14px;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    line-height: 1.3;
}

.mobile-result-meta i {
    font-size: 12px;
    opacity: 0.8;
    width: 16px;
}

.mobile-result-footer {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: auto;
}

.mobile-result-price {
    font-size: 16px;
    font-weight: 700;
    color: var(--neon-lime);
    letter-spacing: -0.02em;
}

.mobile-search-placeholder,
.mobile-search-no-results {
    text-align: center;
    padding: var(--space-8) var(--space-3);
    color: var(--text-secondary);
}

.mobile-search-placeholder i,
.mobile-search-no-results i {
    font-size: 48px;
    opacity: 0.2;
    margin-bottom: 16px;
    color: var(--neon-lime);
}

.mobile-search-placeholder p,
.mobile-search-no-results p {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.mobile-search-placeholder small,
.mobile-search-no-results small {
    font-size: 14px;
    opacity: 0.6;
}
