/**
 * Enhanced Listings CSS - Sexy, Modern Design
 * Showcases all the rich AI-enhanced data
 */

:root {
    --matcha-green: #7cb342;
    --matcha-dark: #558b2f;
    --matcha-light: #aed581;
    --matcha-bg: #f1f8e9;
    --gold: #ffd700;
    --silver: #c0c0c0;
    --bronze: #cd7f32;
    --white: #ffffff;
    --black: #1a1a1a;
    --gray-50: #fafafa;
    --gray-100: #f5f5f5;
    --gray-200: #eeeeee;
    --gray-300: #e0e0e0;
    --gray-400: #bdbdbd;
    --gray-600: #757575;
    --gray-700: #616161;
    --gray-800: #424242;
    --primary-color: var(--matcha-green);
    --secondary-color: var(--gray-600);
    --border-color: var(--gray-200);
    --background-color: var(--gray-50);
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

/* Enhanced Listing Card */
.listing-card {
    background: var(--white);
    border: 1px solid #000000;
    border-radius: 0;
    overflow: hidden;
    margin-bottom: 0;
    transition: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    box-shadow: none;
}

.listing-card:hover {
    box-shadow: none;
    transform: none;
}

/* Card Header with Image */
.listing-card-header {
    position: relative;
    height: 280px;
    overflow: hidden;
    background: var(--matcha-light);
}

.listing-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: none;
}

/* Badge Overlays on Image */
.listing-badges {
    display: none;
}

.badge {
    display: none;
}

.badge-premium {
    display: none;
}

.badge-exceptional {
    display: none;
}

.badge-rating {
    display: none;
}

.badge-work-friendly {
    display: none;
}

/* Card Body */
.listing-card-body {
    padding: 32px 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
    text-align: center;
}

/* Venue Name */
.venue-name-main {
    font-size: 16px;
    font-weight: 300;
    color: var(--black);
    margin-bottom: 8px;
    line-height: 1.3;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Location */
.venue-location-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    color: var(--secondary-color);
    font-size: 11px;
    margin-bottom: 16px;
    letter-spacing: 0.5px;
}

/* Stats Row */
.venue-stats {
    display: flex;
    gap: 4px;
    margin-bottom: 0;
    padding: 0;
    border: none;
    justify-content: center;
    align-items: center;
}

.stat-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0;
    flex: none;
}

.stat-value {
    font-size: 16px;
    font-weight: 400;
    color: #FFB800;
    line-height: 1;
    letter-spacing: 2px;
}

/* Restrict stat-label hiding to listing cards only to avoid affecting homepage stats */
.listing-card .stat-label {
    display: none;
}

/* AI Summary */
.venue-summary {
    display: none;
}

/* Signature Items */
.signature-items {
    display: none;
}

.signature-tag {
    display: none;
}

/* Keywords */
.venue-keywords {
    display: none;
}

.keyword-pill {
    display: none;
}

/* Features Row */
.venue-features {
    display: none;
}

.feature-item {
    display: none;
}

.feature-icon {
    display: none;
}

/* Action Footer */
.listing-card-footer {
    display: none;
}

.btn-view-details {
    display: none;
}

/* Advanced Filters */
.advanced-filters {
    background: var(--white);
    border: 1px solid #000000;
    border-radius: 0;
    padding: 24px;
    margin-bottom: 32px;
}

.filter-section {
    margin-bottom: 20px;
}

.filter-section:last-child {
    margin-bottom: 0;
}

.filter-label {
    font-size: 13px;
    font-weight: 300;
    color: var(--gray-800);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.filter-chip {
    padding: 8px 16px;
    background: var(--white);
    border: 1px solid #000000;
    border-radius: 0;
    font-size: 13px;
    font-weight: 300;
    color: var(--gray-700);
    cursor: pointer;
    transition: all 0.2s;
}

.filter-chip:hover {
    background: var(--gray-100);
}

.filter-chip.active {
    background: var(--black);
    color: var(--white);
    border-color: #000000;
}

/* Sort Dropdown */
.sort-container {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.sort-label {
    font-size: 14px;
    color: var(--gray-700);
    font-weight: 500;
}

.sort-select {
    padding: 10px 16px;
    border: 1px solid #000000;
    border-radius: 0;
    font-size: 14px;
    color: var(--gray-800);
    background: var(--white);
    cursor: pointer;
    min-width: 200px;
}

/* Loading States */
.loading-shimmer {
    background: linear-gradient(90deg, var(--gray-100) 25%, var(--gray-200) 50%, var(--gray-100) 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
}

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

/* Grid Layout */
.listings-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    border: none;
    margin-left: 0;
    margin-top: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .listings-grid {
        grid-template-columns: 1fr;
    }
    
    .listing-card-header {
        height: 240px;
    }
}

/* Scroll Reveal Animation - Disabled for cleaner look */
.listing-card {
    opacity: 1;
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 60px 20px;
    color: var(--secondary-color);
}

.empty-state-icon {
    font-size: 64px;
    margin-bottom: 16px;
    opacity: 0.5;
}

.empty-state-title {
    font-size: 20px;
    font-weight: 300;
    color: var(--gray-800);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.empty-state-text {
    font-size: 14px;
}

/* Noise Level Indicator */
.noise-indicator {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.noise-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gray-300);
}

.noise-dot.active {
    background: var(--primary-color);
}

/* Work Score Bar */
.work-score-bar {
    width: 100%;
    height: 4px;
    background: var(--gray-200);
    border-radius: 2px;
    overflow: hidden;
    margin-top: 4px;
}

.work-score-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--matcha-dark) 100%);
    transition: width 0.3s ease;
}

