/* SceneLink Explore Page - Mobile-First Refined Experience */
/* "Where should I go tonight?" - Optimized for mobile app-style UX */

/* ============================================
   RESET & BASE STYLES
   ============================================ */

* {
    box-sizing: border-box;
}

/* ============================================
   MOBILE-FIRST LAYOUT
   ============================================ */

.explore-page-wrapper {
    min-height: 100vh;
    background: #0a0a0a;
    padding-bottom: 80px;
}

/* ============================================
   PAGE HEADER - COMPACT & CLEAR
   ============================================ */

.explore-page-header {
    background: linear-gradient(180deg, #0a0a0a 0%, #1a1a1a 100%);
    padding: 12px 16px 8px;
    position: sticky;
    top: 60px;
    z-index: 100;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.explore-header-enhanced {
    position: relative;
    margin-bottom: 8px;
}

.explore-title-wrapper {
    position: relative;
    z-index: 2;
}

.explore-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 4px 0;
    letter-spacing: -0.5px;
    line-height: 1.1;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    background: linear-gradient(135deg, #ffffff 0%, #ffd700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.explore-subtitle {
    font-size: 0.9rem;
    color: #e0e0e0;
    margin: 0;
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

.explore-header-accent {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255,215,0,0.1) 0%, rgba(255,215,0,0) 70%);
    border-radius: 50%;
    z-index: 1;
    pointer-events: none;
}

/* ============================================
   SEARCH BAR - PROMINENT & ACCESSIBLE
   ============================================ */

.search-section {
    padding: 8px 16px 6px;
    background: #0a0a0a;
}

.search-input-container {
    position: relative;
    margin-bottom: 6px;
}

.search-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.08);
    border: 2px solid rgba(212, 175, 55, 0.4);
    border-radius: 16px;
    padding: 14px 16px 14px 48px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.search-icon {
    position: absolute;
    left: 16px;
    color: #D4AF37;
    font-size: 1.1rem;
    z-index: 1;
}

.search-input-wrapper:focus-within {
    border-color: #D4AF37;
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.25);
}

.search-icon {
    color: #D4AF37;
    font-size: 1.1rem;
    margin-right: 12px;
    flex-shrink: 0;
}

.search-input {
    flex: 1;
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 0.9rem;
    outline: none;
    font-weight: 500;
}

.search-input::placeholder {
    color: #666;
    font-size: 0.9rem;
}

.search-clear-btn {
    background: none;
    border: none;
    color: #999;
    font-size: 1.2rem;
    padding: 4px 8px;
    cursor: pointer;
    display: none;
    transition: color 0.2s;
}

.search-clear-btn.visible {
    display: block;
}

.search-clear-btn:hover {
    color: #D4AF37;
}

/* ============================================
   LOCATION & TIME CONTROLS
   ============================================ */

.location-time-row {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: #999;
    margin-top: 12px;
    flex-wrap: wrap;
}

.location-selector,
.time-selector {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 0.85rem;
    color: #D4AF37;
    font-weight: 500;
}

.location-selector:hover,
.time-selector:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: rgba(212, 175, 55, 0.4);
}

.location-selector i,
.time-selector i {
    font-size: 0.8rem;
}

.location-time-separator {
    color: #444;
    margin: 0 4px;
}

/* ============================================
   CATEGORY CHIPS - CLEAR SELECTION
   ============================================ */

.category-section {
    padding: 8px 16px;
    background: #0a0a0a;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.category-chips-container {
    position: relative;
    margin: 0 -4px;
    padding: 0 4px;
}

.category-chips {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 4px 0 8px;
    scroll-behavior: smooth;
}

.category-chips::-webkit-scrollbar {
    display: none;
}

.category-chip {
    flex-shrink: 0;
    padding: 10px 16px;
    min-height: 44px;
    min-width: 80px;
    background: rgba(255, 255, 255, 0.05);
    border: 1.5px solid rgba(255, 255, 255, 0.1);
    border-radius: 22px;
    color: #ccc;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.25s ease;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 6px;
}

.category-chip i {
    font-size: 0.8rem;
    opacity: 0.8;
}

.category-chip:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(212, 175, 55, 0.3);
}

.category-chip:active {
    transform: scale(0.95);
}

.category-chip.active {
    background: linear-gradient(135deg, #D4AF37 0%, #E5C158 100%);
    border-color: #D4AF37;
    color: #0a0a0a;
    font-weight: 700;
    box-shadow: 0 3px 12px rgba(212, 175, 55, 0.4);
    transform: scale(1.02);
}

/* ============================================
   VIBE CHIPS - HORIZONTALLY SCROLLABLE
   ============================================ */

.vibe-section {
    padding: 8px 16px;
    background: #0a0a0a;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.vibe-section-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #666;
    margin-bottom: 6px;
    font-weight: 600;
}

.vibe-chips-container {
    position: relative;
    margin: 0 -4px;
    padding: 0 4px;
}

.vibe-chips {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 0 0 8px;
    padding-bottom: 4px;
    scroll-behavior: smooth;
}

.vibe-chips::-webkit-scrollbar {
    display: none;
}

.vibe-chip {
    flex-shrink: 0;
    padding: 10px 18px;
    min-height: 44px;
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 22px;
    color: #D4AF37;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.25s ease;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.vibe-chip:hover {
    background: rgba(212, 175, 55, 0.15);
    border-color: rgba(212, 175, 55, 0.4);
}

.vibe-chip:active {
    transform: scale(0.95);
}

.vibe-chip.active {
    background: rgba(212, 175, 55, 0.3);
    border: 2px solid #D4AF37;
    color: #ffffff;
    font-weight: 700;
    box-shadow: 0 3px 12px rgba(212, 175, 55, 0.3);
    transform: scale(1.02);
}

/* ============================================
   FILTERS & RESULT COUNT
   ============================================ */

.filters-results-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 16px;
    background: #0a0a0a;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    gap: 12px;
}

/* ============================================
   SCOPE TOGGLE (Friends/Trending)
   ============================================ */

.scope-toggle-section {
    padding: 6px 16px;
    background: #0a0a0a;
    display: flex;
    justify-content: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.scope-toggle {
    display: inline-flex;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 4px;
    gap: 4px;
}

.scope-toggle-btn {
    padding: 8px 16px;
    background: transparent;
    border: none;
    border-radius: 20px;
    color: #999;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.25s ease;
    display: flex;
    align-items: center;
    gap: 6px;
}

.scope-toggle-btn:hover {
    color: #D4AF37;
    transform: translateY(-1px);
}

.scope-toggle-btn:active {
    transform: translateY(0);
}

.scope-toggle-btn.active {
    background: rgba(212, 175, 55, 0.2);
    color: #D4AF37;
    font-weight: 600;
    border: 1px solid rgba(212, 175, 55, 0.3);
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.2);
}

.scope-toggle-btn i {
    font-size: 0.8rem;
}

.filters-control {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1.5px solid rgba(212, 175, 55, 0.2);
    border-radius: 24px;
    color: #D4AF37;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.25s ease;
}

.filters-control:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: rgba(212, 175, 55, 0.4);
    transform: translateY(-1px);
}

.filters-control:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.filters-control.has-active {
    background: rgba(212, 175, 55, 0.15);
    border-color: #D4AF37;
}

.filter-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 20px;
    height: 20px;
    padding: 0 6px;
    background: #D4AF37;
    color: #0a0a0a;
    border-radius: 10px;
    font-size: 0.75rem;
    font-weight: 700;
}

.result-count {
    flex: 1;
    font-size: 0.9rem;
    color: #999;
    text-align: right;
    font-weight: 400;
}

.result-count strong {
    color: #ffffff;
    font-weight: 600;
}

/* ============================================
   LIST/MAP TOGGLE
   ============================================ */

.view-toggle-section {
    padding: 8px 16px;
    background: #0a0a0a;
    display: flex;
    justify-content: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.view-toggle {
    display: inline-flex;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 4px;
    gap: 4px;
}

.view-toggle-btn {
    padding: 8px 24px;
    background: transparent;
    border: none;
    border-radius: 20px;
    color: #999;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.25s ease;
    display: flex;
    align-items: center;
    gap: 6px;
}

.view-toggle-btn:hover {
    color: #D4AF37;
    transform: translateY(-1px);
}

.view-toggle-btn:active {
    transform: translateY(0);
}

.view-toggle-btn.active {
    background: linear-gradient(135deg, #D4AF37 0%, #E5C158 100%);
    color: #0a0a0a;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.3);
}

/* ============================================
   VENUE CARDS - POLISHED & CONSISTENT
   ============================================ */

.venues-container {
    padding: 12px 16px;
    background: #0a0a0a;
}

.venues-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.venue-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.venue-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
    border-color: rgba(212, 175, 55, 0.3);
}

.venue-card:active {
    transform: scale(0.98);
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

.venue-card-image {
    position: relative;
    width: 100%;
    padding-top: 60%; /* 5:3 aspect ratio */
    overflow: hidden;
    background: #1a1a1a;
}

.venue-card-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.venue-card:hover .venue-card-image img {
    transform: scale(1.05);
}

.venue-card:active {
    transform: scale(0.98);
}

.venue-save-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #fff;
    font-size: 0.9rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    z-index: 10;
}

.venue-save-btn:hover {
    background: rgba(212, 175, 55, 0.9);
    border-color: rgba(212, 175, 55, 0.3);
    transform: scale(1.05);
}

.venue-save-btn:active {
    transform: scale(0.95);
}

.venue-save-btn.saved {
    background: rgba(212, 175, 55, 0.9);
    color: #0a0a0a;
    border-color: rgba(212, 175, 55, 0.5);
}

.venue-card-content {
    padding: 16px;
}

.venue-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 6px;
    gap: 12px;
}

.venue-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    line-height: 1.3;
    flex: 1;
}

.venue-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    flex-shrink: 0;
}

.rating-star {
    color: #D4AF37;
    font-size: 0.9rem;
}

.rating-value {
    font-size: 0.9rem;
    font-weight: 600;
    color: #ffffff;
}

.venue-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: #999;
    margin-bottom: 8px;
    flex-wrap: wrap;
}

.venue-type {
    color: #ccc;
}

.venue-price {
    color: #D4AF37;
    font-weight: 600;
}

.venue-neighborhood {
    color: #999;
}

.meta-separator {
    color: #444;
}

.venue-hook {
    font-size: 0.8rem;
    color: #bbb;
    margin-bottom: 8px;
    line-height: 1.4;
    font-weight: 500;
}

.venue-details {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.8rem;
    color: #999;
    margin-bottom: 10px;
}

.venue-distance,
.venue-status {
    display: flex;
    align-items: center;
    gap: 4px;
}

.venue-status.open {
    color: #4CAF50;
}

.venue-status.closed {
    color: #f44336;
}

.venue-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 12px;
}

.venue-tag-chip {
    padding: 4px 10px;
    background: rgba(212, 175, 55, 0.12);
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: 10px;
    font-size: 0.7rem;
    color: #D4AF37;
    font-weight: 600;
    display: inline-block;
    transition: all 0.2s ease;
}

.venue-tag-chip:hover {
    background: rgba(212, 175, 55, 0.18);
    border-color: rgba(212, 175, 55, 0.4);
}

.venue-actions {
    display: flex;
    gap: 8px;
}

.venue-btn {
    padding: 12px;
    min-height: 44px;
    border: none;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.venue-btn-primary {
    flex: 2;
    background: linear-gradient(135deg, #D4AF37 0%, #E5C158 100%);
    color: #0a0a0a;
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.2);
}

.venue-btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.venue-btn-primary:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.2);
}

.venue-btn-secondary {
    width: 44px;
    padding: 0;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #D4AF37;
}

.venue-btn-secondary:hover {
    background: rgba(212, 175, 55, 0.15);
    border-color: rgba(212, 175, 55, 0.3);
    transform: scale(1.05);
}

.venue-btn-secondary:active {
    transform: scale(0.95);
}

/* ============================================
   FILTERS MODAL
   ============================================ */

.filters-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    display: none;
    align-items: flex-end;
    justify-content: center;
}

.filters-modal.active {
    display: flex;
}

.filters-modal-content {
    background: #1a1a1a;
    border-radius: 20px 20px 0 0;
    width: 100%;
    max-width: 600px;
    max-height: 80vh;
    overflow-y: auto;
    padding: 24px;
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

.filters-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.filters-modal-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
}

.filters-live-summary {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    background: rgba(212, 175, 55, 0.08);
    border-radius: 12px;
    margin-bottom: 24px;
    font-size: 0.9rem;
    color: #D4AF37;
    font-weight: 600;
    transition: all 0.3s ease;
}

.filters-live-summary .summary-count {
    color: #ffffff;
    font-weight: 700;
}

.filters-live-summary .summary-location,
.filters-live-summary .summary-time {
    color: #D4AF37;
}

.filters-close-btn {
    background: none;
    border: none;
    color: #999;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 4px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s;
}

.filters-close-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

.filter-group {
    margin-bottom: 28px;
}

.filter-group-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: #D4AF37;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.filter-options {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.filter-option {
    padding: 10px 18px;
    background: rgba(255, 255, 255, 0.05);
    border: 1.5px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    color: #ccc;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.25s ease;
}

.filter-option:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(212, 175, 55, 0.3);
}

.filter-option.active {
    background: rgba(212, 175, 55, 0.2);
    border-color: #D4AF37;
    color: #ffffff;
    font-weight: 600;
}

.filter-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.25s ease;
}

.filter-toggle:hover {
    background: rgba(255, 255, 255, 0.08);
}

.filter-toggle-label {
    font-size: 0.9rem;
    color: #ffffff;
    font-weight: 500;
}

.filter-toggle-switch {
    width: 48px;
    height: 28px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    position: relative;
    transition: all 0.3s ease;
}

.filter-toggle-switch::after {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    width: 22px;
    height: 22px;
    background: #ffffff;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.filter-toggle.active .filter-toggle-switch {
    background: #D4AF37;
}

.filter-toggle.active .filter-toggle-switch::after {
    left: 23px;
}

.filters-modal-actions {
    display: flex;
    gap: 12px;
    margin-top: 32px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.filters-reset-btn {
    flex: 1;
    padding: 14px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: #D4AF37;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
}

.filters-reset-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(212, 175, 55, 0.3);
}

.filters-apply-btn {
    flex: 2;
    padding: 14px;
    background: linear-gradient(135deg, #D4AF37 0%, #E5C158 100%);
    border: none;
    border-radius: 12px;
    color: #0a0a0a;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
}

.filters-apply-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

/* ============================================
   MAP VIEW
   ============================================ */

.map-container {
    display: none;
    position: relative;
    height: calc(100vh - 200px);
    min-height: 500px;
    background: #1a1a1a;
}

.map-container.active {
    display: block;
}

#explore-map {
    width: 100%;
    height: 100%;
}

.map-bottom-sheet {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 20px 20px 0 0;
    padding: 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    z-index: 1000;
}

.map-bottom-sheet.visible {
    transform: translateY(0);
}

.bottom-sheet-handle {
    width: 40px;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
    margin: 0 auto 16px;
}

.bottom-sheet-venue-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 8px 0;
}

.bottom-sheet-venue-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: #999;
    margin-bottom: 12px;
}

.bottom-sheet-actions {
    display: flex;
    gap: 8px;
}

/* ============================================
   LOADING STATES
   ============================================ */

.skeleton-loader {
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0.05) 0%,
        rgba(255, 255, 255, 0.12) 50%,
        rgba(255, 255, 255, 0.05) 100%
    );
    background-size: 200% 100%;
    animation: skeleton-loading 1.8s ease-in-out infinite;
    border-radius: 8px;
}

@keyframes skeleton-loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

.skeleton-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.skeleton-image {
    padding-top: 60%; /* 5:3 aspect ratio */
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0.05) 0%,
        rgba(255, 255, 255, 0.12) 50%,
        rgba(255, 255, 255, 0.05) 100%
    );
    background-size: 200% 100%;
    animation: skeleton-loading 1.8s ease-in-out infinite;
}

.skeleton-content {
    padding: 16px;
}

.skeleton-title {
    height: 20px;
    width: 70%;
    margin-bottom: 12px;
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0.05) 0%,
        rgba(255, 255, 255, 0.12) 50%,
        rgba(255, 255, 255, 0.05) 100%
    );
    background-size: 200% 100%;
    animation: skeleton-loading 1.8s ease-in-out infinite;
    border-radius: 4px;
}

.skeleton-text {
    height: 14px;
    width: 100%;
    margin-bottom: 8px;
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0.05) 0%,
        rgba(255, 255, 255, 0.12) 50%,
        rgba(255, 255, 255, 0.05) 100%
    );
    background-size: 200% 100%;
    animation: skeleton-loading 1.8s ease-in-out infinite;
    border-radius: 4px;
}

.skeleton-text.short {
    width: 60%;
}

.skeleton-text.medium {
    width: 80%;
}

/* ============================================
   EMPTY STATE
   ============================================ */

.empty-state {
    text-align: center;
    padding: 40px 16px;
}

.empty-state-icon {
    font-size: 3.5rem;
    color: #333;
    margin-bottom: 16px;
}

.empty-state-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
}

.empty-state-message {
    font-size: 0.9rem;
    color: #999;
    margin-bottom: 20px;
    line-height: 1.6;
}

.similar-spots {
    margin-bottom: 24px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.similar-spots .venue-card {
    margin-bottom: 12px;
    opacity: 0.8;
}

.similar-spots .venue-card:hover {
    opacity: 1;
}

.empty-state-action {
    padding: 12px 24px;
    background: linear-gradient(135deg, #D4AF37 0%, #E5C158 100%);
    color: #0a0a0a;
    border: none;
    border-radius: 24px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
}

.empty-state-action:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

/* ============================================
   RESPONSIVE - TABLET & DESKTOP
   ============================================ */

@media (min-width: 768px) {
    .explore-page-header {
        padding: 20px 32px 24px;
    }

    .explore-title {
        font-size: 2rem;
    }

    .explore-subtitle {
        font-size: 1rem;
    }

    .search-section {
        padding: 20px 32px 16px;
    }

    .search-input-wrapper {
        max-width: 600px;
        margin: 0 auto;
    }

    .location-time-row {
        justify-content: center;
    }

    .category-section,
    .vibe-section {
        padding-left: 32px;
        padding-right: 32px;
    }

    .category-chips,
    .vibe-chips {
        justify-content: center;
    }

    .filters-results-bar {
        padding: 16px 32px;
    }

    .venues-container {
        padding: 20px 32px;
    }

    .venues-list {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .venue-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 12px 32px rgba(0, 0, 0, 0.5);
    }
}

@media (min-width: 1024px) {
    .explore-title {
        font-size: 2.25rem;
    }

    .venues-list {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }

    .filters-modal-content {
        border-radius: 20px;
        max-height: 70vh;
    }
}

@media (min-width: 1280px) {
    .explore-page-wrapper {
        max-width: 1400px;
        margin: 0 auto;
    }

    .venues-list {
        gap: 28px;
    }
}

/* ============================================
   TOAST NOTIFICATIONS
   ============================================ */

.toast-notification {
    position: fixed;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    color: #ffffff;
    padding: 12px 24px;
    border-radius: 24px;
    font-size: 0.9rem;
    font-weight: 500;
    z-index: 10000;
    opacity: 0;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.toast-notification.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* ============================================
   DATE PICKER MODAL
   ============================================ */

.date-picker-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10000;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.date-picker-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
}

.date-picker-content {
    position: relative;
    background: #1a1a1a;
    border-radius: 20px 20px 0 0;
    width: 100%;
    max-width: 400px;
    padding: 24px;
    animation: slideUp 0.3s ease;
}

.date-picker-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.date-picker-header h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
}

.date-picker-close {
    background: none;
    border: none;
    color: #999;
    font-size: 1.5rem;
    cursor: pointer;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s;
}

.date-picker-close:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

.date-picker-body {
    margin-bottom: 24px;
}

.date-picker-input {
    width: 100%;
    padding: 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 500;
}

.date-picker-input:focus {
    outline: none;
    border-color: #D4AF37;
    background: rgba(255, 255, 255, 0.08);
}

.date-picker-actions {
    display: flex;
    gap: 12px;
}

.date-picker-cancel,
.date-picker-confirm {
    flex: 1;
    padding: 14px;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
}

.date-picker-cancel {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #D4AF37;
}

.date-picker-cancel:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(212, 175, 55, 0.3);
}

.date-picker-confirm {
    background: linear-gradient(135deg, #D4AF37 0%, #E5C158 100%);
    border: none;
    color: #0a0a0a;
}

.date-picker-confirm:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

/* ============================================
   MAP PLACEHOLDER
   ============================================ */

.map-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
}

.map-placeholder-content {
    text-align: center;
    padding: 40px 20px;
}

.map-placeholder-content i {
    font-size: 4rem;
    color: #D4AF37;
    margin-bottom: 20px;
    opacity: 0.5;
}

.map-placeholder-content p {
    font-size: 1.1rem;
    color: #ffffff;
    margin: 0 0 8px 0;
    font-weight: 600;
}

.map-placeholder-content small {
    font-size: 0.85rem;
    color: #999;
}

/* ============================================
   ACCESSIBILITY
   ============================================ */

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

/* Focus styles for keyboard navigation */
button:focus-visible,
.category-chip:focus-visible,
.vibe-chip:focus-visible,
.venue-card:focus-visible {
    outline: 2px solid #D4AF37;
    outline-offset: 2px;
}
/* ============================================
   ENHANCED FILTER STYLES (Additional)
   ============================================ */

/* Filter Checkboxes */
.filter-checkboxes {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.filter-checkbox {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    padding: 8px 0;
}

.filter-checkbox input[type=checkbox] {
    width: 18px;
    height: 18px;
    accent-color: #ffd700;
}

.checkbox-text {
    font-size: 0.9rem;
    color: #e0e0e0;
}

/* Enhanced Filter Actions */
.filters-modal-actions {
    display: flex;
    gap: 8px;
    padding: 16px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.filters-save-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    padding: 10px 16px;
    border-radius: 8px;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.25s ease;
}

.filters-save-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}


/* ============================================
   FUNCTIONAL MAP STYLES
   ============================================ */

.map-functional {
    position: relative;
    width: 100%;
    height: 100%;
}

.map-canvas {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.map-background {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7) contrast(1.1);
}

.venue-markers {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.venue-marker {
    position: absolute;
    cursor: pointer;
    transform: translate(-50%, -100%);
    transition: all 0.25s ease;
    z-index: 5;
}

.venue-marker:hover {
    transform: translate(-50%, -100%) scale(1.1);
    z-index: 10;
}

.marker-icon {
    position: relative;
    background: #D4AF37;
    color: #000;
    width: 32px;
    height: 32px;
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
    border: 2px solid #ffffff;
}

.marker-icon i {
    transform: rotate(45deg);
    font-size: 14px;
    font-weight: bold;
}

.marker-price {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #000;
    color: #D4AF37;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    font-size: 10px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #D4AF37;
}

.map-controls {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 15;
}

.map-zoom-btn,
.map-center-btn {
    width: 44px;
    height: 44px;
    background: rgba(0, 0, 0, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.25s ease;
    backdrop-filter: blur(10px);
}

.map-zoom-btn:hover,
.map-center-btn:hover {
    background: rgba(255, 215, 0, 0.2);
    border-color: #ffd700;
    transform: scale(1.05);
}

.map-zoom-btn:active,
.map-center-btn:active {
    transform: scale(0.95);
}

