/* Notion-like design system */
:root {
    --bg-color: #ffffff;
    --text-color: #37352f;
    --text-color-light: #787774;
    --text-color-lighter: #9b9a97;
    --border-color: #e9e9e7;
    --hover-bg: #f7f6f3;
    --primary-color: #2383e2;
    --success-color: #448361;
    --shadow-light: 0 1px 3px rgba(15, 15, 15, 0.1);
    --shadow-medium: 0 4px 20px rgba(15, 15, 15, 0.1);
    --shadow-hover: 0 8px 25px rgba(15, 15, 15, 0.15);
    --font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, "Apple Color Emoji", Arial, sans-serif, "Segoe UI Emoji", "Segoe UI Symbol";
    --radius: 6px;
    --radius-large: 8px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-family);
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.5;
    font-size: 16px;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header */
.header {
    padding: 32px 0 24px;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 32px;
}

.venue-title {
    font-size: 2.75em;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-color);
    line-height: 1.2;
}

.venue-description {
    color: var(--text-color-light);
    font-size: 1.125em;
    line-height: 1.6;
    max-width: 100%;
}

/* Venue images */
.venue-images {
    margin-bottom: 32px;
}

.images-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    margin-bottom: 16px;
    max-width: 100%;
}

.venue-image {
    width: 100%;
    height: 160px;
    border-radius: var(--radius-large);
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: all 0.2s ease;
}

.venue-image:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-2px);
}

.venue-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

/* Venue map */
.venue-map {
    margin-bottom: 32px;
}

.venue-map h3 {
    margin-bottom: 16px;
    font-size: 1.125em;
    font-weight: 600;
    color: var(--text-color);
}

.map-container {
    height: 350px;
    width: 100%;
    border-radius: var(--radius-large);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    border: 1px solid var(--border-color);
}

/* Venue description section */
.venue-description-section {
    margin-bottom: 32px;
    padding: 20px;
    background: var(--hover-bg);
    border-radius: var(--radius-large);
    border: 1px solid var(--border-color);
}

/* Venue stats */
.venue-stats {
    margin-bottom: 32px;
    padding: 20px;
    background: var(--hover-bg);
    border-radius: var(--radius-large);
    border: 1px solid var(--border-color);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 20px;
    text-align: center;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-size: 2em;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
}

.stat-label {
    font-size: 0.875em;
    color: var(--text-color-light);
    margin-top: 4px;
}

/* Timeslots section */
.timeslots-section {
    margin-bottom: 32px;
}

.timeslots-section h3 {
    margin-bottom: 16px;
    font-size: 1.125em;
    font-weight: 600;
    color: var(--text-color);
}

.timeslots-table {
    background: white;
    border-radius: var(--radius-large);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-light);
    overflow: hidden;
}

.timeslots-header {
    display: grid;
    grid-template-columns: 140px 1fr 120px 120px;
    gap: 16px;
    padding: 16px 20px;
    background: var(--hover-bg);
    border-bottom: 1px solid var(--border-color);
    font-weight: 600;
    font-size: 0.875em;
    color: var(--text-color);
}

.timeslot-row {
    display: grid;
    grid-template-columns: 140px 1fr 120px 120px;
    gap: 16px;
    padding: 16px 20px;
    border-bottom: 1px solid var(--border-color);
    transition: background-color 0.15s ease;
}

.timeslot-row:last-child {
    border-bottom: none;
}

.timeslot-row:hover {
    background: var(--hover-bg);
}

.timeslot-time {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.slot-date {
    font-weight: 600;
    font-size: 0.875em;
    color: var(--text-color);
}

.slot-time {
    font-size: 0.8em;
    color: var(--text-color-light);
}

.timeslot-product {
    display: flex;
    align-items: center;
}

.product-name {
    font-size: 0.875em;
    color: var(--text-color);
    line-height: 1.3;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.timeslot-price {
    display: flex;
    align-items: center;
}

.price-amount {
    font-weight: 600;
    color: var(--success-color);
    font-size: 0.875em;
}

.timeslot-action {
    display: flex;
    align-items: center;
}

.timeslot-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 16px;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 0.75em;
    transition: all 0.15s ease;
    box-shadow: var(--shadow-light);
    white-space: nowrap;
}

.timeslot-btn:hover {
    background: #1967d2;
    box-shadow: var(--shadow-medium);
    transform: translateY(-1px);
}



/* Skip the line info */
.skip-the-line-info {
    margin-bottom: 24px;
    padding: 16px 20px;
    background: #fef3cd;
    border: 1px solid #fcd34d;
    border-radius: var(--radius-large);
    color: #92400e;
}

.skip-the-line-info p {
    margin: 0;
    font-weight: 500;
}

/* Sorting controls */
.sorting-controls {
    margin: 24px 0;
    padding: 20px;
    background: #f8fafc;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}

.sorting-controls h3 {
    margin: 0 0 16px 0;
    font-size: 18px;
    font-weight: 600;
    color: #334155;
}

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

.sort-btn {
    display: inline-block;
    padding: 8px 16px;
    background: #ffffff;
    color: #64748b;
    text-decoration: none;
    border: 1px solid #cbd5e1;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
    white-space: nowrap;
    text-align: center;
    min-width: fit-content;
}

.sort-btn:hover {
    background: #f1f5f9;
    border-color: #94a3b8;
    color: #475569;
    text-decoration: none;
}

.sort-btn.active {
    background: #3b82f6;
    color: #ffffff;
    border-color: #3b82f6;
}

/* Products - Single Column Layout */
.products-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 40px;
}

/* Product card - Horizontal layout for desktop */
.product-card {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-large);
    overflow: hidden;
    transition: all 0.2s ease;
    box-shadow: var(--shadow-light);
    display: flex;
    flex-direction: row;
    min-height: 160px;
}

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

/* Product image - Fixed 240x160 */
.product-image {
    width: 240px;
    height: 160px;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.03);
}

/* Product content - Information section */
.product-content {
    flex: 1;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    min-width: 0; /* Prevent flex item from overflowing */
}

/* Product action section - Logo and button */
.product-action {
    width: 140px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 20px 16px;
    border-left: 1px solid var(--border-color);
    background: white;
}

/* Service logo */
.service-logo {
    width: 105px;
    height: auto;
    object-fit: contain;
    margin-bottom: auto;
}

/* Product title */
.product-title {
    font-size: 1.125em;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-color);
    line-height: 1.3;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

/* Product description */
.product-description {
    color: var(--text-color-light);
    font-size: 0.9em;
    line-height: 1.4;
    margin-bottom: 12px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

/* Product meta */
.product-meta {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: auto;
}

.rating {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.875em;
    color: var(--text-color-light);
}

.rating-stars {
    color: #ffa500;
    font-size: 1em;
}

.price {
    font-weight: 600;
    font-size: 1.125em;
    color: var(--success-color);
}

/* Availability info */
.availability {
    font-size: 0.8em;
    color: var(--text-color-lighter);
}

/* Product tags */
.product-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 12px;
}

.tag {
    padding: 3px 8px;
    background: var(--hover-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    font-size: 0.75em;
    font-weight: 500;
    color: var(--text-color-light);
}

.skip-the-line {
    background: #fef3cd;
    color: #92400e;
    border-color: #fcd34d;
}

/* Product timeslots */
.product-timeslots {
    border-top: 1px solid var(--border-color);
    margin-top: 12px;
}

.timeslots-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 12px;
    cursor: pointer;
    background: var(--hover-bg);
    border-radius: var(--radius);
    margin: 8px 0;
    transition: all 0.15s ease;
    user-select: none;
}

.timeslots-toggle:hover {
    background: #f0f0f0;
}

.timeslots-label {
    font-weight: 600;
    font-size: 0.8em;
    color: var(--text-color);
}

.timeslots-arrow {
    font-size: 0.75em;
    color: var(--text-color-light);
    transition: transform 0.15s ease;
}

.timeslots-toggle.expanded .timeslots-arrow {
    transform: rotate(180deg);
}

.timeslots-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.timeslots-content.show {
    max-height: 300px;
    display: block !important;
}

.product-timeslot-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 16px;
    border-bottom: 1px solid var(--border-color);
    background: #fafafa;
}

.product-timeslot-item:last-child {
    border-bottom: none;
    border-radius: 0 0 var(--radius) var(--radius);
}

.product-timeslot-item:first-child {
    border-radius: var(--radius) var(--radius) 0 0;
}

.timeslot-date-time {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.timeslot-date-time .slot-date {
    font-weight: 600;
    font-size: 0.8em;
    color: var(--text-color);
}

.timeslot-date-time .slot-time {
    font-size: 0.75em;
    color: var(--text-color-light);
}

.product-timeslot-item .timeslot-price {
    font-weight: 600;
    font-size: 0.8em;
    color: var(--success-color);
}

/* Visit button */
.visit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 0.875em;
    transition: all 0.15s ease;
    box-shadow: var(--shadow-light);
    margin-top: auto;
}

.visit-btn:hover {
    background: #1967d2;
    box-shadow: var(--shadow-medium);
    transform: translateY(-1px);
}



/* Mobile responsive */
@media (max-width: 767px) {
    .container {
        padding: 0 16px;
    }
    
    .venue-title {
        font-size: 2.25em;
    }
    
    .header {
        padding: 24px 0 20px;
        margin-bottom: 24px;
    }
    
    .venue-images {
        margin-bottom: 20px;
    }
    
    .images-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        justify-content: center;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .venue-image {
        width: 100%;
        height: 160px;
        max-width: 240px;
    }

    .venue-map {
        margin-bottom: 20px;
    }

    /* Product timeslots mobile styles */
    .product-timeslots {
        margin-top: 6px;
    }

    .timeslots-toggle {
        padding: 6px 10px;
        margin: 6px 0;
    }

    .timeslots-label {
        font-size: 0.75em;
    }

    .product-timeslot-item {
        padding: 6px 12px;
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }

    .product-timeslot-item .timeslot-price {
        align-self: flex-end;
        font-size: 0.75em;
    }

    .timeslot-date-time .slot-date {
        font-size: 0.75em;
    }

    .timeslot-date-time .slot-time {
        font-size: 0.7em;
    }

    .map-container {
        height: 300px;
        border-radius: var(--radius);
    }
    
    .venue-description-section {
        margin-bottom: 20px;
        padding: 16px;
    }
    
    .sorting-controls,
    .venue-stats {
        margin-bottom: 24px;
        padding: 16px;
    }

    .timeslots-section {
        margin-bottom: 24px;
    }

    .timeslots-header,
    .timeslot-row {
        grid-template-columns: 100px 1fr 80px 80px;
        gap: 8px;
        padding: 12px 16px;
    }

    .timeslots-header {
        font-size: 0.8em;
    }

    .slot-date {
        font-size: 0.8em;
    }

    .slot-time {
        font-size: 0.75em;
    }

    .product-name {
        font-size: 0.8em;
        -webkit-line-clamp: 1;
    }

    .price-amount {
        font-size: 0.8em;
    }

    .timeslot-btn {
        padding: 6px 12px;
        font-size: 0.7em;
    }

    .skip-the-line-info {
        margin-bottom: 20px;
        padding: 12px 16px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }
    
    .stat-number {
        font-size: 1.5em;
    }
    
    /* Mobile: Vertical card layout */
    .product-card {
        flex-direction: column;
        min-height: auto;
    }
    
    .product-image {
        width: 100%;
        height: 160px;
    }
    
    .product-content {
        padding: 16px;
    }
    
    .product-action {
        width: 100%;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 16px;
        border-left: none;
        border-top: 1px solid var(--border-color);
        background: white;
    }
    
    .service-logo {
        width: 105px;
        margin-bottom: 0;
    }
    
    .visit-btn {
        padding: 8px 16px;
        font-size: 0.8em;
    }
    
    .sort-buttons {
        justify-content: center;
    }
    
    .sort-btn {
        flex: 1;
        text-align: center;
        min-width: 0;
    }

    .footer {
        margin-top: 40px;
        padding: 32px 0 20px;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
        margin-bottom: 24px;
    }

    .footer-section h4 {
        font-size: 0.9em;
        margin-bottom: 12px;
    }

    .footer-section p {
        font-size: 0.8em;
    }

    .footer-section a {
        font-size: 0.8em;
    }

    .footer-bottom {
        padding-top: 20px;
    }

    .footer-bottom p {
        font-size: 0.75em;
    }
}

/* No products state */
.no-products {
    text-align: center;
    padding: 48px 24px;
    color: var(--text-color-light);
}

.no-products h3 {
    margin-bottom: 8px;
    color: var(--text-color);
    font-weight: 600;
}

/* Loading state */
.loading {
    text-align: center;
    padding: 40px;
    color: var(--text-color-light);
}

/* Footer */
.footer {
    background: var(--hover-bg);
    border-top: 1px solid var(--border-color);
    margin-top: 60px;
    padding: 48px 0 24px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 32px;
    margin-bottom: 32px;
}

.footer-section h4 {
    font-size: 1em;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 16px;
}

.footer-section p {
    color: var(--text-color-light);
    font-size: 0.875em;
    line-height: 1.5;
    margin: 0;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section li {
    margin-bottom: 8px;
}

.footer-section a {
    color: var(--text-color-light);
    text-decoration: none;
    font-size: 0.875em;
    transition: color 0.15s ease;
}

.footer-section a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    padding-top: 24px;
    border-top: 1px solid var(--border-color);
    text-align: center;
}

.footer-bottom p {
    color: var(--text-color-lighter);
    font-size: 0.8em;
    margin: 0;
}

/* Small mobile adjustments */
@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }
    
    .venue-title {
        font-size: 1.875em;
    }
    
    .images-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
        max-width: 100%;
    }
    
    .venue-image {
        max-width: none;
        height: 120px;
    }

    .map-container {
        height: 250px;
    }

    .timeslots-header,
    .timeslot-row {
        grid-template-columns: 80px 1fr 70px 70px;
        gap: 6px;
        padding: 10px 12px;
    }

    .timeslots-header {
        font-size: 0.75em;
    }

    .slot-date {
        font-size: 0.75em;
    }

    .slot-time {
        font-size: 0.7em;
    }

    .product-name {
        font-size: 0.75em;
    }

    .price-amount {
        font-size: 0.75em;
    }

    .timeslot-btn {
        padding: 4px 8px;
        font-size: 0.65em;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .sort-buttons {
        gap: 6px;
    }
    
    .sort-btn {
        padding: 12px 16px;
    }

    .footer {
        margin-top: 32px;
        padding: 24px 0 16px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 20px;
    }

    .footer-section h4 {
        font-size: 0.85em;
        margin-bottom: 10px;
    }

    .footer-section p {
        font-size: 0.75em;
    }

    .footer-section a {
        font-size: 0.75em;
    }

    .footer-bottom {
        padding-top: 16px;
    }

    .footer-bottom p {
        font-size: 0.7em;
    }
} 

/* Mobile responsive styles */
@media (max-width: 768px) {
    .sorting-controls {
        margin: 16px 0;
        padding: 16px;
    }
    
    .sorting-controls h3 {
        font-size: 16px;
        margin-bottom: 12px;
    }
    
    .sort-buttons {
        gap: 6px;
    }
    
    .sort-btn {
        padding: 6px 12px;
        font-size: 13px;
        flex: 1;
        min-width: calc(50% - 3px);
        max-width: calc(50% - 3px);
    }
}

@media (max-width: 480px) {
    .sort-btn {
        padding: 8px 10px;
        font-size: 12px;
        min-width: calc(50% - 3px);
        max-width: calc(50% - 3px);
    }
}

/* City mode styles - Notion-like design according to PRD */
.city-header {
    text-align: center;
    padding: 48px 0 32px;
}

.city-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-color);
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.city-description {
    color: var(--text-color-light);
    font-size: 1.25rem;
    line-height: 1.5;
    max-width: 600px;
    margin: 0 auto 48px;
}

/* City venues container - single column according to PRD */
.city-venues {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 48px;
}

/* Venue card item - Notion-like minimal design */
.venue-card-item {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-large);
    overflow: hidden;
    transition: all 0.15s ease;
    box-shadow: var(--shadow-light);
}

.venue-card-item:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-medium);
    transform: translateY(-1px);
}

/* Venue link */
.venue-link {
    display: flex;
    text-decoration: none;
    color: inherit;
    width: 100%;
    min-height: 160px;
}

.venue-link:hover {
    text-decoration: none;
    color: inherit;
}

/* Venue image container - PRD: 240x160px with padding for better spacing */
.venue-image-container {
    width: 240px;
    height: 160px;
    flex-shrink: 0;
    overflow: hidden;
    background: #f8f9fa;
    border-radius: 8px;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}

.venue-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
    border-radius: 4px;
}

.venue-link:hover .venue-image {
    transform: scale(1.03);
}

/* Venue info section */
.venue-info {
    flex: 1;
    padding: 20px 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-width: 0; /* Prevent flex overflow */
}

/* Venue header with name and popularity */
.venue-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
}

.venue-name {
    font-size: 1.375rem;
    font-weight: 600;
    color: var(--text-color);
    line-height: 1.3;
    margin: 0;
    flex: 1;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

/* Venue rating display - PRD: rating next to venue name */
.venue-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    flex-shrink: 0;
    margin-left: 16px;
}

.popularity-score {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary-color);
    background: rgba(35, 131, 226, 0.1);
    padding: 4px 8px;
    border-radius: 12px;
    margin-right: 4px;
}

.popularity-icon {
    font-size: 1rem;
    margin-left: 4px;
    filter: drop-shadow(0 1px 2px rgba(0,0,0,0.1));
}



/* Venue description - PRD: collapsed view, no truncation */
.venue-description {
    margin-top: 12px;
    line-height: 1.5;
}

.description-content {
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.description-content.collapsed {
    max-height: 3.6rem; /* ~3 lines */
    position: relative;
}

.description-content.collapsed::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1.2rem;
    background: linear-gradient(transparent, var(--bg-color));
}

.description-content.expanded {
    max-height: none;
}

.description-content p {
    margin: 0;
    color: var(--text-color-light);
    font-size: 0.9rem;
    line-height: 1.4;
}

.description-toggle {
    background: rgba(35, 131, 226, 0.08);
    border: none;
    color: var(--primary-color);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    padding: 6px 12px;
    margin-top: 8px;
    border-radius: 20px;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 32px;
    height: 32px;
}

.description-toggle:hover {
    background: rgba(35, 131, 226, 0.15);
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(35, 131, 226, 0.2);
}

.stat-number {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-color);
    line-height: 1;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-color-lighter);
    margin-top: 2px;
    text-transform: lowercase;
}

/* No venues state */
.no-venues {
    text-align: center;
    padding: 64px 24px;
    color: var(--text-color-light);
    background: var(--hover-bg);
    border-radius: var(--radius-large);
    border: 1px solid var(--border-color);
}

.no-venues h3 {
    margin-bottom: 12px;
    color: var(--text-color);
    font-weight: 600;
    font-size: 1.25rem;
}

.no-venues p {
    font-size: 0.95rem;
    line-height: 1.5;
    max-width: 400px;
    margin: 0 auto;
}

/* Mobile responsive for city mode */
@media (max-width: 767px) {
    .city-header {
        padding: 32px 0 24px;
    }
    
    .city-title {
        font-size: 2.25rem;
    }
    
    .city-description {
        font-size: 1.125rem;
        margin-bottom: 32px;
    }
    
    .venue-link {
        flex-direction: column;
        min-height: auto;
    }
    
    .venue-image-container {
        width: 100%;
        height: 200px;
    }
    
    .venue-info {
        padding: 16px 20px;
    }
    
    .venue-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .venue-rating {
        margin-left: 0;
    }
    
    .venue-name {
        font-size: 1.25rem;
    }
    
    .venue-description {
        margin-top: 8px;
    }
}

@media (max-width: 480px) {
    .city-title {
        font-size: 1.875rem;
    }
    
    .city-description {
        font-size: 1rem;
        margin-bottom: 24px;
    }
    
    .venue-image-container {
        height: 160px;
    }
    
    .venue-info {
        padding: 12px 16px;
    }
    
    .venue-name {
        font-size: 1.125rem;
    }
    
    .venue-description p {
        font-size: 0.85rem;
    }
    
    .description-content.collapsed {
        max-height: 3rem; /* Slightly less on mobile */
    }
    
    .popularity-score {
        font-size: 0.8rem;
        padding: 2px 6px;
    }
    
    .popularity-icon {
        font-size: 0.9rem;
    }
    
    .description-toggle {
        font-size: 0.9rem;
        min-width: 28px;
        height: 28px;
        padding: 4px 8px;
    }
} 