/* Mobile-First Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #ff385c;
    --primary-dark: #e31c5f;
    --primary-light: #fff5f5;
    --secondary-color: #ffa726;
    --accent-color: #388e3c;
    --text-primary: #222222;
    --text-secondary: #717171;
    --background-light: #f7f7f7;
    --border-light: #f0f0f0;
    --border-medium: #e0e0e0;
    --shadow-light: 0 1px 3px rgba(0,0,0,0.05);
    --shadow-medium: 0 4px 12px rgba(0,0,0,0.1);
    --shadow-heavy: 0 8px 24px rgba(0,0,0,0.15);
    --radius-small: 8px;
    --radius-medium: 12px;
    --radius-large: 16px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: linear-gradient(135deg, #faf8ff 0%, #f0f9ff 50%, #ecfdf5 100%);
    color: var(--text-primary);
    line-height: 1.4;
    padding-top: 60px;
    padding-bottom: 80px;
    font-size: 16px;
    min-height: 100vh;
}

/* Mobile Header */
.mobile-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.9) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 16px;
    border-bottom: 1px solid rgba(240,240,240,0.5);
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0,0,0,0.05);
}

.back-btn, .share-btn {
    width: 40px;
    height: 40px;
    border: none;
    background: transparent;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #222222;
    cursor: pointer;
}

.back-btn:hover, .share-btn:hover {
    background: #f7f7f7;
}

.header-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 18px;
    color: #222222;
}

.brand-icon {
    color: var(--primary-color);
    font-size: 20px;
}

/* Page Layout */
.page {
    display: none;
    min-height: calc(100vh - 140px);
}

.page.active {
    display: block;
}

/* Search Section */
.search-section {
    padding: 20px 16px;
    background: linear-gradient(135deg, rgba(255,255,255,0.9) 0%, rgba(248,250,252,0.9) 100%);
    border-bottom: 1px solid rgba(240,240,240,0.3);
    backdrop-filter: blur(10px);
}

.search-bar {
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(255,255,255,0.8) 0%, rgba(247,247,247,0.8) 100%);
    border: 1px solid rgba(255,255,255,0.5);
    border-radius: 32px;
    padding: 14px 18px;
    gap: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.search-bar:hover {
    box-shadow: 0 6px 25px rgba(0,0,0,0.12);
    transform: translateY(-1px);
}

.search-bar i {
    color: #717171;
    font-size: 16px;
}

.search-input {
    flex: 1;
    border: none;
    background: transparent;
    outline: none;
    font-size: 16px;
    color: #222222;
}

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

/* Stats Section */
.stats-section {
    display: flex;
    justify-content: space-around;
    padding: 24px 16px;
    background: linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(249,250,251,0.95) 100%);
    border-bottom: 8px solid rgba(247,247,247,0.5);
    backdrop-filter: blur(10px);
    position: relative;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255,56,92,0.03) 0%, rgba(255,167,38,0.03) 50%, rgba(56,142,60,0.03) 100%);
    pointer-events: none;
}

.stat-item {
    text-align: center;
    position: relative;
    padding: 12px;
    border-radius: var(--radius-medium);
    transition: all 0.3s ease;
}

.stat-item:hover {
    background: rgba(255,255,255,0.7);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.stat-number {
    display: block;
    font-size: 26px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 4px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.stat-label {
    font-size: 12px;
    color: #717171;
    font-weight: 500;
}

/* Content Sections */
.content-section {
    background: linear-gradient(135deg, rgba(255,255,255,0.9) 0%, rgba(248,250,252,0.9) 100%);
    margin-bottom: 12px;
    border-radius: var(--radius-large) var(--radius-large) 0 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    overflow: hidden;
    position: relative;
}

.content-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 50%, var(--accent-color) 100%);
}

.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 20px 20px 20px;
    position: relative;
}

.section-header h2 {
    font-size: 22px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--primary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 2px;
}

.show-all-btn {
    background: transparent;
    border: none;
    color: #222222;
    font-size: 14px;
    font-weight: 600;
    text-decoration: underline;
    cursor: pointer;
}

.trending-indicator {
    font-size: 16px;
}

/* Hawker List - AllTrails Style */
.hawker-list {
    padding: 0 16px 20px 16px;
}

.hawker-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 8px;
    border-bottom: 1px solid rgba(240,240,240,0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: var(--radius-medium);
    margin: 0;
    position: relative;
    z-index: 1;
}

.hawker-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: var(--radius-medium) 0 0 var(--radius-medium);
    transition: width 0.3s ease;
    pointer-events: none;
    z-index: -1;
}

.hawker-item:hover {
    background: rgba(255,255,255,0.5);
    transform: translateX(4px);
}

.hawker-item:hover::before {
    width: 4px;
}

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

.hawker-number {
    font-size: 16px;
    font-weight: 700;
    color: #717171;
    width: 20px;
    text-align: center;
}

.hawker-image {
    position: relative;
    width: 68px;
    height: 68px;
    border-radius: var(--radius-medium);
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
}

.hawker-item:hover .hawker-image {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

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

.hawker-item:hover .hawker-image img {
    transform: scale(1.1);
}

.save-btn {
    position: absolute;
    top: 4px;
    right: 4px;
    background: linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(248,250,252,0.95) 100%);
    backdrop-filter: blur(10px);
    border: none;
    width: 26px;
    height: 26px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 12px;
    color: var(--text-primary);
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
}

.save-btn:hover {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    transform: scale(1.1);
}

.hawker-info {
    flex: 1;
    min-width: 0;
}

.hawker-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 4px;
}

.hawker-header h3 {
    font-size: 16px;
    font-weight: 600;
    color: #222222;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.download-btn {
    background: transparent;
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #717171;
    flex-shrink: 0;
}

.download-btn:hover {
    background: #f7f7f7;
}

.hawker-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
    flex-wrap: wrap;
}

.rating {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 14px;
    font-weight: 600;
    color: #222222;
}

.rating i {
    color: #ffa726;
    font-size: 12px;
}

.distance {
    font-size: 14px;
    color: #717171;
    font-weight: 500;
}

.difficulty {
    font-size: 12px;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 12px;
}

.difficulty.busy {
    background: linear-gradient(135deg, #fff3e0 0%, #ffcc80 100%);
    color: #f57c00;
    box-shadow: 0 2px 8px rgba(245,124,0,0.2);
}

.difficulty.very-busy {
    background: linear-gradient(135deg, #ffebee 0%, #ffcdd2 100%);
    color: #d32f2f;
    box-shadow: 0 2px 8px rgba(211,47,47,0.2);
}

.hawker-tags {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.tag {
    background: linear-gradient(135deg, rgba(247,247,247,0.8) 0%, rgba(229,231,235,0.8) 100%);
    color: var(--text-secondary);
    font-size: 12px;
    font-weight: 500;
    padding: 6px 10px;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.5);
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

.tag:hover {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* Trending List */
.trending-list {
    padding: 0 16px 20px 16px;
    display: flex;
    gap: 16px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
}

.trending-item {
    display: flex;
    flex-direction: column;
    width: 160px;
    flex-shrink: 0;
    cursor: pointer;
    transition: all 0.3s ease;
    scroll-snap-align: start;
    background: linear-gradient(135deg, rgba(255,255,255,0.8) 0%, rgba(248,250,252,0.8) 100%);
    border-radius: var(--radius-medium);
    padding: 8px;
    border: 1px solid rgba(255,255,255,0.3);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    position: relative;
    z-index: 1;
}

.trending-item:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.trending-image {
    width: 100%;
    height: 100px;
    border-radius: var(--radius-medium);
    overflow: hidden;
    margin-bottom: 8px;
    position: relative;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.trending-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255,56,92,0.1) 0%, rgba(255,167,38,0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.trending-item:hover .trending-image::after {
    opacity: 1;
}

.trending-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.trending-info h4 {
    font-size: 14px;
    font-weight: 600;
    color: #222222;
    margin-bottom: 2px;
    line-height: 1.3;
}

.trending-info p {
    font-size: 12px;
    color: #717171;
    margin-bottom: 4px;
}

.trending-meta {
    display: flex;
    gap: 8px;
    font-size: 12px;
    font-weight: 500;
}

.trending-meta .rating {
    color: #ffa726;
}

.trending-meta .price {
    color: #388e3c;
}

.trending-meta .wait {
    color: #f57c00;
}

/* Bottom Navigation */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(248,250,252,0.95) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(240,240,240,0.3);
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 8px 0;
    z-index: 1000;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 10px 12px;
    border-radius: var(--radius-medium);
    transition: all 0.3s ease;
    position: relative;
}

.nav-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 0 0 3px 3px;
    transition: width 0.3s ease;
}

.nav-item.active::before {
    width: 24px;
}

.nav-item i {
    font-size: 20px;
    color: #717171;
}

.nav-item span {
    font-size: 10px;
    font-weight: 600;
    color: #717171;
}

.nav-item.active i,
.nav-item.active span {
    color: var(--primary-color);
}

.nav-item:hover {
    background: rgba(255,255,255,0.7);
    transform: translateY(-2px);
}

/* Hawker Detail Page - Mobile First */
.hawker-detail-hero {
    position: relative;
    height: 160px;
    overflow: hidden;
    border-radius: 0;
    max-height: 160px;
}

.hawker-detail-hero img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    object-position: center;
    max-height: 160px;
}

.hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    padding: 30px 16px 16px 16px;
    color: white;
}

.hero-overlay h1 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 6px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
    line-height: 1.2;
}

.hero-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    font-size: 14px;
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(0,0,0,0.5);
}

.hero-meta .rating i {
    color: #ffa726;
    margin-right: 4px;
}

/* Hawker Info Cards */
.hawker-info-cards {
    padding: 20px 16px;
    background: white;
}

.info-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 12px;
}

.info-card {
    background: white;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-medium);
    padding: 16px;
    box-shadow: var(--shadow-light);
    transition: all 0.2s ease;
}

.info-card:hover {
    box-shadow: var(--shadow-medium);
    transform: translateY(-1px);
}

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

.info-header i {
    color: var(--primary-color);
    font-size: 16px;
    width: 20px;
    text-align: center;
}

.info-header h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
}

.info-card p {
    font-size: 14px;
    color: var(--text-secondary);
    margin: 4px 0;
    line-height: 1.4;
}

.stat-highlight {
    font-size: 20px !important;
    font-weight: 700 !important;
    color: var(--primary-color) !important;
}

.status-open {
    color: var(--accent-color) !important;
    font-weight: 600 !important;
}

.status-closed {
    color: var(--primary-color) !important;
    font-weight: 600 !important;
}

/* Popular Times Section */
.popular-times-section {
    padding: 20px 16px;
    background: white;
    border-top: 8px solid var(--background-light);
}

.popular-times-section h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.popular-times-card {
    background: var(--background-light);
    border-radius: var(--radius-medium);
    padding: 16px;
}

/* Stall Headers Gallery */
.stall-headers-gallery {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding: 0 0 16px 0;
    margin-bottom: 20px;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
}

.stall-header-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 100px;
    flex-shrink: 0;
    cursor: pointer;
    transition: transform 0.2s ease;
    scroll-snap-align: start;
}

.stall-header-item:hover {
    transform: translateY(-2px);
}

.stall-header-item img {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-medium);
    object-fit: cover;
    margin-bottom: 8px;
    box-shadow: var(--shadow-light);
}

.stall-header-info {
    text-align: center;
}

.stall-header-info h4 {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
    line-height: 1.2;
}

.stall-rating-compact {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
    font-size: 11px;
    color: var(--secondary-color);
}

.stall-rating-compact i {
    font-size: 10px;
}

/* Stall Detail Content */
.stall-detail-content {
    padding: 20px 16px;
}

/* Popular Dishes Section */
.popular-dishes-section {
    margin-bottom: 24px;
}

.popular-dishes-section h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.popular-dishes-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.dish-card {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    font-size: 14px;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 20px;
    box-shadow: var(--shadow-light);
    transition: all 0.2s ease;
}

.dish-card:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow-medium);
}

/* Stall Info Cards */
.stall-info-cards {
    margin-bottom: 24px;
}

/* Menu Card Section */
.menu-card-section {
    margin-bottom: 24px;
    padding: 0 16px;
}

.menu-card-section h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 8px;
}

.menu-card-section h3::before {
    content: '🍽️';
    font-size: 20px;
}

.menu-card {
    background: linear-gradient(135deg, rgba(255,255,255,0.9) 0%, rgba(248,250,252,0.9) 100%);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-large);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    transition: all 0.3s ease;
    position: relative;
}

.menu-card:hover {
    box-shadow: var(--shadow-heavy);
    transform: translateY(-2px);
}

.menu-image {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: contain;
    object-position: center;
    display: block;
    background: #ffffff;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.menu-image:hover {
    transform: scale(1.02);
}

.menu-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 50%, var(--accent-color) 100%);
}

/* Menu card responsive adjustments */
@media (max-width: 768px) {
    .menu-card-section {
        padding: 0;
    }
    
    .menu-image {
        max-height: 300px;
    }
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 12px;
}

.info-item {
    text-align: left;
}

.info-item h4 {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-item p {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-primary);
    margin: 0;
}

.detail-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 24px;
}

.stat-box {
    text-align: left;
}

.stat-value {
    font-size: 24px;
    font-weight: 700;
    color: #222222;
    display: block;
}

.stat-label {
    font-size: 14px;
    color: #717171;
    font-weight: 500;
}

.what-people-saying {
    background: linear-gradient(135deg, var(--primary-light) 0%, #ffffff 100%);
    padding: 20px;
    border-radius: var(--radius-medium);
    margin-bottom: 24px;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-light);
}

.what-people-saying h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #222222;
}

.what-people-saying p {
    color: #222222;
    line-height: 1.5;
}

/* Popular Times - Mobile Optimized */
.popular-times {
    background: white;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 24px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    border: 1px solid #f0f0f0;
}

.popular-times h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #222222;
    display: flex;
    align-items: center;
    gap: 8px;
}

.popular-times h3::before {
    content: "📊";
    font-size: 16px;
}

.days-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 4px;
}

.day-tab {
    background: #f8f9fa;
    border: 2px solid transparent;
    color: #6c757d;
    font-size: 13px;
    font-weight: 600;
    padding: 10px 16px;
    border-radius: 24px;
    cursor: pointer;
    white-space: nowrap;
    flex-shrink: 0;
    transition: all 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.day-tab:hover {
    background: #e9ecef;
    transform: translateY(-1px);
}

.day-tab.active {
    background: linear-gradient(135deg, #ff385c, #ff1744);
    color: white;
    border-color: #ff385c;
    box-shadow: 0 4px 12px rgba(255, 56, 92, 0.3);
}

.live-status {
    background: linear-gradient(135deg, #ffebee, #fce4ec);
    color: #d32f2f;
    padding: 16px 20px;
    border-radius: 12px;
    font-weight: 600;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    border-left: 4px solid #d32f2f;
    box-shadow: 0 2px 8px rgba(211, 47, 47, 0.1);
}

.live-status.moderate {
    background: linear-gradient(135deg, #fff3e0, #ffeaa7);
    color: #f57c00;
    border-left-color: #f57c00;
    box-shadow: 0 2px 8px rgba(245, 124, 0, 0.1);
}

.live-status.low {
    background: linear-gradient(135deg, #e8f5e8, #c8e6c8);
    color: #2e7d32;
    border-left-color: #2e7d32;
    box-shadow: 0 2px 8px rgba(46, 125, 50, 0.1);
}

.live-status i {
    font-size: 10px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.1); }
}

.chart-container {
    height: 100px;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 12px;
    padding: 16px;
    position: relative;
    overflow: hidden;
}

.chart-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ff385c, #ff1744, #e91e63);
    border-radius: 12px 12px 0 0;
}

.wait-time {
    font-size: 14px;
    color: #495057;
    display: flex;
    align-items: center;
    gap: 8px;
    background: #f8f9fa;
    padding: 12px 16px;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

.wait-time i {
    color: #ff385c;
}

/* Stalls List */
.stalls-section {
    padding: 20px 16px;
    background: white;
    border-top: 8px solid var(--background-light);
}

.stalls-section h2 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.stall-item {
    background: linear-gradient(135deg, rgba(255,255,255,0.9) 0%, rgba(248,250,252,0.9) 100%);
    border: 1px solid rgba(240,240,240,0.3);
    border-radius: var(--radius-large);
    margin-bottom: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    backdrop-filter: blur(10px);
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.stall-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
    pointer-events: none;
    z-index: -1;
}

.stall-main {
    display: flex;
    gap: 16px;
    padding: 16px;
}

.stall-image {
    position: relative;
    width: 80px;
    height: 80px;
    border-radius: var(--radius-medium);
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

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

.stall-rating-badge {
    position: absolute;
    top: 4px;
    right: 4px;
    background: linear-gradient(135deg, rgba(255,167,38,0.95) 0%, rgba(255,183,77,0.95) 100%);
    color: white;
    padding: 2px 6px;
    border-radius: 8px;
    font-size: 10px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 2px;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.stall-rating-badge i {
    font-size: 8px;
}

.stall-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.stall-item:hover {
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    transform: translateY(-3px);
    border-color: rgba(255,56,92,0.2);
}

.stall-item:hover::before {
    transform: scaleX(1);
}

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

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

.stall-info h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 4px 0;
    line-height: 1.3;
}

.stall-meta {
    font-size: 12px;
    color: var(--text-secondary);
    margin-bottom: 2px;
}

.stall-price {
    font-size: 14px;
    font-weight: 600;
    color: var(--accent-color);
    margin: 0;
}

.stall-unit {
    font-size: 12px;
    color: #717171;
    margin-bottom: 4px;
}

.stall-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 14px;
    font-weight: 600;
}

.stall-rating i {
    color: #ffa726;
    font-size: 12px;
}

.stall-meta {
    display: flex;
    gap: 12px;
    margin-bottom: 8px;
    flex-wrap: wrap;
    font-size: 14px;
}

.stall-meta span {
    color: #717171;
}

.price-range {
    color: #388e3c;
    font-weight: 600;
}

.stall-dishes {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.dish-tag {
    background: linear-gradient(135deg, rgba(247,247,247,0.9) 0%, rgba(229,231,235,0.9) 100%);
    color: var(--text-secondary);
    font-size: 12px;
    font-weight: 500;
    padding: 6px 10px;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.5);
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

.dish-tag:hover {
    background: linear-gradient(135deg, var(--accent-color) 0%, #66bb6a 100%);
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* Stall Detail Page */
.stall-detail-hero {
    padding: 16px;
}

.stall-hero-card {
    position: relative;
    height: 200px;
    width: 100%;
    overflow: hidden;
    max-height: 200px;
    background-color: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.stall-hero-card::before {
    content: '';
    display: block;
    width: 100%;
    height: 200px;
    background: linear-gradient(45deg, #f0f0f0 25%, transparent 25%), 
                linear-gradient(-45deg, #f0f0f0 25%, transparent 25%), 
                linear-gradient(45deg, transparent 75%, #f0f0f0 75%), 
                linear-gradient(-45deg, transparent 75%, #f0f0f0 75%);
    background-size: 20px 20px;
    background-position: 0 0, 0 10px, 10px -10px, -10px 0px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    opacity: 0.3;
}

.stall-hero-card img {
    position: relative;
    z-index: 1;
}

.stall-hero-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    object-position: center center;
    display: block;
    max-width: 100%;
    min-height: 200px;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    border-radius: 12px;
    transform: scale(1.1);
}

.stall-hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    padding: 20px 16px 12px 16px;
    color: white;
}

.breadcrumb {
    font-size: 12px;
    margin-bottom: 4px;
    opacity: 0.9;
    text-shadow: 0 1px 2px rgba(0,0,0,0.5);
}

.breadcrumb a {
    color: white;
    text-decoration: none;
}

.stall-hero-overlay h1 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 6px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
    line-height: 1.2;
}

/* Photo Gallery */
.photo-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 8px;
    margin-bottom: 20px;
    max-height: 160px;
    overflow: hidden;
    border-radius: var(--radius-medium);
    box-shadow: var(--shadow-light);
    padding: 8px;
    background: var(--background-light);
}

.photo-gallery img {
    width: 100%;
    height: 70px;
    object-fit: cover;
    border-radius: var(--radius-small);
    transition: transform 0.2s ease;
    cursor: pointer;
    box-shadow: var(--shadow-light);
}

.photo-gallery img:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-medium);
}

/* Reviews */
.reviews-section h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #222222;
}

.reviews-grid {
    display: grid;
    gap: 16px;
}

.review-card {
    background: white;
    border: 1px solid #f0f0f0;
    border-radius: 12px;
    padding: 16px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    transition: all 0.2s ease;
}

.review-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transform: translateY(-1px);
}

.no-reviews {
    text-align: center;
    color: #717171;
    font-style: italic;
    padding: 40px 20px;
    background: #f7f7f7;
    border-radius: 12px;
}


.review-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

.reviewer-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #f0f0f0;
}

.reviewer-info h4 {
    font-size: 14px;
    font-weight: 600;
    color: #222222;
    margin: 0;
}

.reviewer-info p {
    font-size: 12px;
    color: #717171;
}

.review-rating {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
}

.review-rating i {
    color: #ffa726;
}

.review-text {
    color: #222222;
    line-height: 1.5;
    font-size: 14px;
}

/* Add Stall Page */
.add-stall-content {
    padding: 20px 16px;
}

.add-stall-content h1 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #222222;
    text-align: center;
}

.add-stall-content > p {
    text-align: center;
    color: #717171;
    margin-bottom: 32px;
    line-height: 1.5;
}

.input-methods {
    display: grid;
    gap: 16px;
}

.input-method {
    background: white;
    border: 2px solid #f0f0f0;
    border-radius: 12px;
    padding: 20px;
    cursor: pointer;
    transition: all 0.2s;
}

.input-method:hover,
.input-method.active {
    border-color: #ff385c;
}

.method-header {
    display: flex;
    align-items: start;
    gap: 12px;
    margin-bottom: 16px;
}

.method-header i {
    font-size: 20px;
    color: #ff385c;
    margin-top: 2px;
}

.method-header h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
    color: #222222;
}

.method-header p {
    font-size: 14px;
    color: #717171;
    line-height: 1.4;
}

.method-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.url-input,
.text-input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    outline: none;
    transition: border-color 0.2s;
}

.url-input:focus,
.text-input:focus {
    border-color: #ff385c;
}

.text-input {
    min-height: 80px;
    resize: vertical;
}

.photo-upload {
    border: 2px dashed #e0e0e0;
    border-radius: 8px;
    padding: 30px 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s;
}

.photo-upload:hover {
    border-color: #ff385c;
    background: #fff5f5;
}

.photo-upload i {
    font-size: 24px;
    color: #717171;
    margin-bottom: 8px;
    display: block;
}

.photo-upload p {
    color: #717171;
    font-size: 14px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: var(--radius-small);
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    font-size: 16px;
    box-shadow: var(--shadow-light);
    transition: all 0.2s ease;
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow-medium);
}

/* Workflow Progress */
.workflow-content {
    padding: 40px 16px;
    text-align: center;
}

.workflow-content h1 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 32px;
    color: #222222;
}

.progress-steps {
    display: grid;
    gap: 20px;
    margin-bottom: 32px;
}

.step {
    display: flex;
    align-items: center;
    gap: 16px;
    text-align: left;
    opacity: 0.4;
    transition: all 0.3s;
}

.step.active {
    opacity: 1;
}

.step-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.step.active .step-icon {
    background: #ff385c;
    color: white;
}

.step h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 2px;
    color: #222222;
}

.step p {
    color: #717171;
    font-size: 14px;
}

.progress-bar {
    width: 100%;
    height: 6px;
    background: #f0f0f0;
    border-radius: 3px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: #ff385c;
    transition: width 0.5s ease;
}

/* Enhanced Visual Effects */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-2px); }
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

@keyframes shimmer {
    0% { background-position: -200px 0; }
    100% { background-position: calc(200px + 100%) 0; }
}

.trending-indicator {
    animation: pulse 2s infinite;
    font-size: 18px;
    filter: drop-shadow(0 2px 4px rgba(255,167,38,0.3));
}

.brand-icon {
    animation: float 3s ease-in-out infinite;
}

/* Loading shimmer effect for images */
.hawker-image::before,
.trending-image::before,
.stall-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    background-size: 200px 100%;
    background-repeat: no-repeat;
    animation: shimmer 1.5s infinite;
    z-index: 1;
}

/* Responsive adjustments for larger screens */
@media (min-width: 768px) {
    .mobile-header {
        display: none;
    }
    
    body {
        padding-top: 0;
        max-width: 768px;
        margin: 0 auto;
        box-shadow: 0 0 0 1px rgba(240,240,240,0.3);
        border-radius: 0 0 var(--radius-large) var(--radius-large);
    }
    
    .bottom-nav {
        max-width: 768px;
        left: 50%;
        transform: translateX(-50%);
        border-left: 1px solid rgba(240,240,240,0.3);
        border-right: 1px solid rgba(240,240,240,0.3);
        border-radius: var(--radius-large) var(--radius-large) 0 0;
    }
    
    .trending-item {
        width: 200px;
    }
    
    .trending-image {
        height: 120px;
    }
    
    .reviews-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
    
    .photo-gallery {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        max-height: none;
    }
    
    .photo-gallery img {
        height: 100px;
    }
    
    .hawker-item {
        padding: 24px 8px;
    }
    
    .hawker-image {
        width: 72px;
        height: 72px;
    }
    
    .hawker-detail-hero {
        height: 180px;
    }
    
    .hawker-detail-hero img {
        height: 180px;
    }
    
    .stall-hero-card {
        height: 220px;
        max-height: 220px;
    }
    
    .stall-hero-card::before {
        height: 220px;
    }
    
    .stall-hero-card img {
        height: 220px;
        min-height: 220px;
    }
    
    .hero-overlay h1 {
        font-size: 26px;
    }
    
    .stall-hero-overlay h1 {
        font-size: 22px;
    }
    
    .hero-meta {
        font-size: 14px;
    }
}

/* Hidden by default for old components */
.photo-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    pointer-events: none;
}

.photo-modal.active {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}

.photo-modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 1;
    cursor: pointer;
}

.photo-modal-content {
    position: relative;
    background: linear-gradient(135deg, rgba(255,255,255,0.98) 0%, rgba(248,250,252,0.98) 100%);
    border-radius: var(--radius-large);
    max-width: 90vw;
    max-height: 90vh;
    width: auto;
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.3);
    overflow: hidden;
    transform: scale(0.8);
    transition: transform 0.3s ease;
    z-index: 2;
}

.photo-modal.active .photo-modal-content {
    transform: scale(1);
}

.photo-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    border-bottom: 1px solid rgba(240,240,240,0.3);
    background: linear-gradient(135deg, rgba(255,255,255,0.8) 0%, rgba(248,250,252,0.8) 100%);
}

.photo-modal-header h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
}

.photo-modal-close {
    background: none;
    border: none;
    font-size: 20px;
    color: var(--text-secondary);
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.photo-modal-close:hover {
    background: rgba(255,56,92,0.1);
    color: var(--primary-color);
    transform: rotate(90deg);
}

.photo-modal-body {
    position: relative;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.photo-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 100%;
    max-height: 60vh;
}

.modal-image {
    max-width: 100%;
    max-height: 60vh;
    height: auto;
    width: auto;
    border-radius: var(--radius-medium);
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
    transition: opacity 0.3s ease;
    opacity: 0;
    display: block;
}

.photo-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(248,250,252,0.95) 100%);
    border: none;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 18px;
    color: var(--text-primary);
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    z-index: 3;
    border: 2px solid rgba(255,255,255,0.5);
}

.photo-nav:hover {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.photo-nav.prev {
    left: -60px;
}

.photo-nav.next {
    right: -60px;
}

.photo-counter {
    background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.5) 100());
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.photo-thumbnails {
    display: flex;
    gap: 8px;
    padding: 16px 24px 20px 24px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-top: 1px solid rgba(240,240,240,0.3);
    background: linear-gradient(135deg, rgba(247,247,247,0.5) 0%, rgba(229,231,235,0.5) 100());
}

.thumbnail {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: var(--radius-small);
    cursor: pointer;
    opacity: 0.6;
    transition: all 0.3s ease;
    flex-shrink: 0;
    border: 2px solid transparent;
}

.thumbnail:hover {
    opacity: 0.8;
    transform: scale(1.05);
}

.thumbnail.active {
    opacity: 1;
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(255,56,92,0.3);
}

/* Mobile responsive adjustments for modal */
@media (max-width: 768px) {
    .photo-modal-content {
        max-width: 95vw;
        max-height: 95vh;
        margin: 10px;
    }
    
    .photo-nav {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .photo-nav.prev {
        left: -50px;
    }
    
    .photo-nav.next {
        right: -50px;
    }
    
    .modal-image {
        max-height: 50vh;
    }
    
    .photo-thumbnails {
        padding: 12px 16px 16px 16px;
    }
    
    .thumbnail {
        width: 50px;
        height: 50px;
    }
}

/* Menu Modal Styles */
.menu-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.menu-modal.active {
    opacity: 1;
    visibility: visible;
}

.menu-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(4px);
}

.menu-modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    transition: transform 0.3s ease;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu-modal.active .menu-modal-content {
    transform: translate(-50%, -50%) scale(1);
}

.menu-modal-image {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.menu-modal-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: white;
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.2s ease;
}

.menu-modal-close:hover {
    background: #f0f0f0;
    transform: scale(1.1);
}

.menu-modal-close i {
    font-size: 14px;
    color: #333;
}

/* Photo Gallery Modal Styles */
.photo-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.photo-modal.active {
    opacity: 1;
    visibility: visible;
}

.photo-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(4px);
}

.photo-modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    transition: transform 0.3s ease;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.photo-modal.active .photo-modal-content {
    transform: translate(-50%, -50%) scale(1);
}

.photo-modal-image {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.photo-modal-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: white;
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.2s ease;
}

.photo-modal-close:hover {
    background: #f0f0f0;
    transform: scale(1.1);
}

.photo-modal-close i {
    font-size: 14px;
    color: #333;
}

.navbar,
.hero-section,
.quick-filters,
.popular-section,
.map-overlay,
.results-header,
.results-container,
.filters-sidebar {
    display: none;
}