/* Base Reset & Variables */
:root {
    --bg-dark: #0a0a0a;
    --bg-card: #151515;
    --text-main: #f0f0f0;
    --text-muted: #a0a0a0;
    --accent-gold: #d4af37;
    --accent-hover: #f1c453;
    --border-color: #333;
    
    --font-heading: 'Cinzel', serif;
    --font-body: 'Inter', sans-serif;
    
    --radius: 12px;
    --transition: all 0.3s ease;
}

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

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 600;
}

/* Site Header Navigation */
.site-header {
    position: relative;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 14px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    transition: var(--transition);
}

.site-logo:hover {
    opacity: 0.9;
    transform: scale(1.02);
}

.logo-image {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    background: linear-gradient(135deg, #fceabb 0%, #d4af37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-link, .back-home-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-muted);
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.25s ease;
    white-space: nowrap;
}

.nav-link i, .back-home-link i {
    color: var(--accent-gold);
    font-size: 0.95rem;
    transition: transform 0.2s ease;
}

.nav-link:hover, .back-home-link:hover {
    color: #ffffff;
    border-color: var(--accent-gold);
    background: rgba(212, 175, 55, 0.12);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.15);
}

.nav-link:hover i, .back-home-link:hover i {
    transform: scale(1.15);
}

.nav-link.active {
    background: linear-gradient(135deg, #fceabb 0%, #d4af37 100%);
    color: var(--bg-dark);
    font-weight: 600;
    border-color: var(--accent-gold);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.35);
}

.nav-link.active i {
    color: var(--bg-dark);
}

@media (max-width: 600px) {
    .header-container {
        padding: 10px 14px;
    }
    
    .logo-text {
        font-size: 1.1rem;
    }
    
    .site-nav {
        gap: 8px;
    }
    
    .nav-link, .back-home-link {
        padding: 6px 12px;
        font-size: 0.82rem;
    }
}

/* Hero Section */
.hero {
    position: relative;
    padding: 100px 20px;
    text-align: center;
    overflow: hidden;
    background: var(--bg-dark);
    border-bottom: 2px solid var(--accent-gold);
}

.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to bottom, rgba(10,10,10,0.5), rgba(10,10,10,0.95));
    z-index: 1;
}

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

.restaurant-name {
    font-size: 4rem;
    background: linear-gradient(135deg, #fceabb 0%, #f8b500 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
    filter: drop-shadow(0 4px 10px rgba(0,0,0,0.8));
    letter-spacing: 2px;
}

.restaurant-meta {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 16px;
    color: var(--text-main);
    font-size: 1rem;
    text-align: center;
}

.restaurant-meta p, .restaurant-meta a {
    display: inline-block;
    color: var(--text-main);
    text-decoration: none;
    line-height: 1.4;
    transition: color 0.2s ease;
}

.restaurant-meta p i, .restaurant-meta a i {
    color: var(--accent-gold);
    margin-right: 6px;
    vertical-align: -1px;
}

.restaurant-meta a:hover {
    color: var(--accent-gold);
}

.website-link {
    color: var(--accent-gold);
    text-decoration: none;
    transition: var(--transition);
}

.website-link:hover {
    color: var(--accent-hover);
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

/* Category Tabs Navigation */
.category-tabs-wrapper {
    position: sticky;
    top: 66px;
    z-index: 990;
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 14px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    transition: top 0.2s ease, background 0.3s ease;
    display: flex;
    align-items: center;
}

.category-tabs-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 45px;
    display: flex;
    align-items: center;
    gap: 10px;
    overflow-x: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    width: 100%;
}

.category-tabs-container::-webkit-scrollbar {
    display: none;
}

/* Scroll Arrow Buttons with Dark Gradient Fade overlays */
.tabs-scroll-btn {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 50px;
    z-index: 15;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    outline: none;
    background: transparent;
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.2s ease;
}

.tabs-scroll-btn.show {
    opacity: 1;
    pointer-events: auto;
}

.tabs-scroll-btn.prev-btn {
    left: 0;
    background: linear-gradient(to right, rgba(10, 10, 10, 0.95) 45%, rgba(10, 10, 10, 0));
    padding-right: 12px;
}

.tabs-scroll-btn.next-btn {
    right: 0;
    background: linear-gradient(to left, rgba(10, 10, 10, 0.95) 45%, rgba(10, 10, 10, 0));
    padding-left: 12px;
}

.tabs-scroll-btn i {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(25, 25, 25, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    transition: all 0.25s ease;
}

.tabs-scroll-btn:hover i {
    background: var(--accent-gold);
    color: #000000;
    border-color: var(--accent-gold);
    transform: scale(1.1);
    box-shadow: 0 0 12px rgba(212, 175, 55, 0.4);
}

.tabs-scroll-btn:active i {
    transform: scale(0.95);
}

.category-tab {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-muted);
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    white-space: nowrap;
    cursor: pointer;
    transition: all 0.25s ease;
    user-select: none;
    flex-shrink: 0;
}

.category-tab:hover {
    color: #ffffff;
    border-color: var(--accent-gold);
    background: rgba(212, 175, 55, 0.12);
    transform: translateY(-1px);
}

.category-tab.active {
    background: linear-gradient(135deg, #fceabb 0%, #d4af37 100%);
    color: var(--bg-dark);
    font-weight: 600;
    border-color: var(--accent-gold);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.35);
}

.category-tab.active:hover {
    transform: none;
    box-shadow: 0 6px 18px rgba(212, 175, 55, 0.45);
}

/* Menu Container */
.menu-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 28px 20px 70px;
}

.menu-category {
    margin-bottom: 40px;
}

.category-title {
    font-size: 1.4rem;
    background: linear-gradient(135deg, #fceabb 0%, #f8b500 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 8px;
    margin-bottom: 16px;
    text-align: center;
    position: relative;
}

.category-title::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background: var(--accent-gold);
}

/* Menu Grid (2 Columns on Desktop, 1 Column on Mobile) */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

/* Menu Item Row Card (Thumbnail Left, Details Right) */
.menu-item {
    background: rgba(22, 22, 22, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: var(--radius);
    padding: 12px 14px;
    transition: all 0.25s ease;
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 14px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}

.menu-item:hover {
    background: rgba(28, 28, 28, 0.9);
    border-color: rgba(212, 175, 55, 0.35);
    box-shadow: 0 4px 16px rgba(212, 175, 55, 0.1);
    transform: translateY(-2px);
}

/* Thumbnail on Left */
.item-image-wrapper {
    position: relative;
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    overflow: hidden;
    border-radius: 10px;
    background: rgba(15, 15, 15, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Details on Right */
.item-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
}

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

.item-name {
    font-size: 0.95rem;
    color: var(--text-main);
    line-height: 1.3;
    font-weight: 600;
    word-break: break-word;
}

.item-price {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    color: var(--accent-gold);
    font-weight: 700;
    flex-shrink: 0;
    white-space: nowrap;
}

.item-description {
    color: var(--text-muted);
    font-size: 0.78rem;
    margin-bottom: 6px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.item-footer {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.72rem;
    flex-wrap: wrap;
}

.item-calories {
    color: #ff7e67;
    display: flex;
    align-items: center;
    gap: 3px;
    font-weight: 500;
}

.spice-level {
    color: #e74c3c;
    margin-left: auto;
    font-size: 0.7rem;
}

.badge {
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.badge.gf {
    background: rgba(46, 204, 113, 0.12);
    color: #4cd137;
    border: 1px solid rgba(46, 204, 113, 0.4);
}

.badge.vg {
    background: rgba(241, 196, 15, 0.12);
    color: #fbc531;
    border: 1px solid rgba(241, 196, 15, 0.4);
}

.badge.popular {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.2) 0%, rgba(239, 68, 68, 0.18) 100%);
    color: #fbbf24;
    border: 1px solid rgba(245, 158, 11, 0.5);
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.badge.popular i {
    color: #f59e0b;
    font-size: 0.62rem;
}

/* Popular Tag (Top-right pill badge) */
.popular-tag {
    position: absolute;
    top: -9px;
    right: 14px;
    background: linear-gradient(135deg, #f59e0b 0%, #ef4444 100%);
    color: #ffffff;
    font-size: 0.62rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    padding: 2px 9px;
    border-radius: 20px;
    box-shadow: 0 2px 8px rgba(239, 68, 68, 0.45);
    display: inline-flex;
    align-items: center;
    gap: 4px;
    z-index: 2;
    line-height: 1.4;
}

.popular-tag i {
    font-size: 0.6rem;
    color: #fff;
}

.menu-item.is-popular {
    background: linear-gradient(135deg, rgba(36, 26, 14, 0.85) 0%, rgba(22, 22, 22, 0.85) 100%);
    border: 1px solid rgba(245, 158, 11, 0.45);
    box-shadow: 0 2px 10px rgba(245, 158, 11, 0.08);
}

.menu-item.is-popular:hover {
    background: linear-gradient(135deg, rgba(46, 33, 16, 0.95) 0%, rgba(28, 28, 28, 0.95) 100%);
    border-color: rgba(245, 158, 11, 0.75);
    box-shadow: 0 4px 18px rgba(245, 158, 11, 0.2);
    transform: translateY(-2px);
}

.item-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

/* Footer */
footer {
    text-align: center;
    padding: 30px;
    background: var(--bg-card);
    border-top: 1px solid var(--border-color);
    color: var(--text-muted);
    font-size: 0.9rem;
}

footer p {
    margin-bottom: 5px;
}

/* Responsive */
@media (max-width: 768px) {
    .menu-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    .restaurant-name {
        font-size: 2rem;
    }
    .hero {
        padding: 60px 15px;
    }
    .restaurant-meta {
        flex-direction: column;
        align-items: center;
        gap: 8px;
        font-size: 0.88rem;
    }
    .restaurant-meta p, .restaurant-meta a {
        display: block;
        text-align: center;
        max-width: 320px;
        margin: 0 auto;
    }
    .category-title {
        font-size: 1.25rem;
        margin-bottom: 14px;
        padding-bottom: 6px;
    }
    .menu-container {
        padding: 15px 12px 50px;
    }
    .menu-category {
        margin-bottom: 30px;
    }
    .header-container {
        padding: 10px 12px;
    }
    .logo-image {
        width: 26px;
        height: 26px;
    }
    .logo-text {
        font-size: 1.05rem;
    }
    .back-home-link span {
        display: none;
    }
    .back-home-link {
        width: 32px;
        height: 32px;
        padding: 0;
        justify-content: center;
        border-radius: 50%;
    }
    .category-tabs-wrapper {
        padding: 8px 0;
    }
    .category-tabs-container {
        padding: 0 10px;
        gap: 6px;
    }
    .category-tab {
        padding: 6px 12px;
        font-size: 0.8rem;
    }
    .item-image-wrapper {
        width: 72px;
        height: 72px;
        border-radius: 8px;
    }
    .menu-item {
        padding: 10px 12px;
    }
    .item-name {
        font-size: 0.88rem;
    }
    .item-price {
        font-size: 0.88rem;
    }
    .item-description {
        font-size: 0.74rem;
        -webkit-line-clamp: 2;
        margin-bottom: 4px;
    }
    .item-footer {
        font-size: 0.68rem;
        gap: 4px;
    }
    .popular-tag {
        top: -8px;
        right: 10px;
        font-size: 0.58rem;
        padding: 2px 7px;
    }
    .badge {
        padding: 1px 4px;
        font-size: 0.6rem;
    }
}

@media (max-width: 480px) {
    .header-container {
        padding: 8px 10px;
    }
    .site-logo {
        gap: 6px;
    }
    .logo-image {
        width: 24px;
        height: 24px;
    }
    .logo-text {
        font-size: 1.1rem;
    }
    .back-home-link {
        width: 32px;
        height: 32px;
    }
}

/* Site Header / Navigation */
.site-header {
    background: rgba(10, 10, 10, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    transition: var(--transition);
}

.site-logo:hover {
    opacity: 0.9;
}

.logo-image {
    width: 35px;
    height: 35px;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    background: linear-gradient(135deg, #fceabb 0%, #d4af37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 1px;
    white-space: nowrap;
}

.site-nav {
    display: flex;
    align-items: center;
}

.back-home-link {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: var(--accent-gold);
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    padding: 8px 16px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 30px;
    background: rgba(212, 175, 55, 0.05);
    transition: var(--transition);
    white-space: nowrap;
}

.back-home-link:hover {
    background: var(--accent-gold);
    color: var(--bg-dark);
    border-color: var(--accent-gold);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
}

/* Footer Navigation */
.footer-nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 15px;
}

.footer-nav a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-nav a:hover {
    color: var(--accent-gold);
}

/* Footer Social Links */
.footer-social {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-bottom: 18px;
}

.footer-social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--accent-gold);
    font-size: 1.1rem;
    text-decoration: none;
    transition: var(--transition);
}

.footer-social-link:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: #ffffff;
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(220, 39, 67, 0.4);
}

/* Static Pages Layout */
.static-container {
    max-width: 800px;
    margin: 40px auto 80px;
    padding: 0 20px;
}

.static-card {
    background: rgba(25, 25, 25, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius);
    padding: 40px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.static-card h2 {
    color: var(--accent-gold);
    font-size: 1.8rem;
    margin: 30px 0 15px;
    border-bottom: 1px dashed var(--border-color);
    padding-bottom: 8px;
}

.static-card h2:first-of-type {
    margin-top: 0;
}

.static-card p {
    color: var(--text-main);
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.static-card ul, .static-card ol {
    margin: 0 0 25px 25px;
    color: var(--text-main);
}

.static-card li {
    margin-bottom: 10px;
    font-size: 1.05rem;
}

/* Contact Page Grid & Form */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 20px;
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .static-card {
        padding: 25px;
    }
}

.contact-info-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-card {
    background: rgba(25, 25, 25, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius);
    padding: 25px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    transition: var(--transition);
}

.info-card:hover {
    border-color: rgba(212, 175, 55, 0.2);
    transform: translateY(-2px);
}

.info-card i {
    font-size: 1.5rem;
    color: var(--accent-gold);
    background: rgba(212, 175, 55, 0.1);
    padding: 12px;
    border-radius: 50%;
}

.info-details h3 {
    font-size: 1.2rem;
    color: var(--text-main);
    margin-bottom: 5px;
}

.info-details p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 0;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
}

.form-control {
    background: rgba(10, 10, 10, 0.8);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 12px 16px;
    color: var(--text-main);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
    width: 100%;
}

.form-control:focus {
    outline: none;
    border-color: var(--accent-gold);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.2);
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.btn-submit {
    background: var(--accent-gold);
    color: var(--bg-dark);
    border: none;
    border-radius: 30px;
    padding: 14px 30px;
    font-size: 1rem;
    font-weight: 600;
    font-family: var(--font-body);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-submit:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

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

/* Alerts */
.alert {
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 25px;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 12px;
}

.alert-success {
    background: rgba(46, 204, 113, 0.1);
    border: 1px solid rgba(46, 204, 113, 0.3);
    color: #2ecc71;
}

.alert-danger {
    background: rgba(231, 76, 60, 0.1);
    border: 1px solid rgba(231, 76, 60, 0.3);
    color: #e74c3c;
}

/* Search & Filter Bar */
.search-container {
    max-width: 650px;
    margin: 0 auto 40px;
    position: relative;
    z-index: 100;
}

.search-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.search-input {
    width: 100%;
    padding: 16px 50px 16px 22px;
    font-size: 1.05rem;
    color: var(--text-main);
    background: rgba(25, 25, 25, 0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 30px;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
}

.search-input:focus {
    outline: none;
    border-color: var(--accent-gold);
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.3), 0 4px 25px rgba(0, 0, 0, 0.5);
    background: rgba(28, 28, 28, 0.95);
}

.search-icon {
    position: absolute;
    right: 20px;
    color: var(--text-muted);
    font-size: 1.15rem;
    transition: var(--transition);
    pointer-events: none;
}

.search-input:focus ~ .search-icon {
    color: var(--accent-gold);
}

.search-clear-btn {
    position: absolute;
    right: 46px;
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 1rem;
    cursor: pointer;
    display: none;
    padding: 4px;
    transition: color 0.2s ease;
}

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

.search-spinner {
    position: absolute;
    right: 20px;
    color: var(--accent-gold);
    font-size: 1.1rem;
    display: none !important;
    pointer-events: none;
}

.search-spinner.active {
    display: block !important;
    animation: searchSpin 0.8s linear infinite;
}

@keyframes searchSpin {
    100% {
        transform: rotate(360deg);
    }
}

/* Live Database Search Dropdown */
.search-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    background: #161616;
    border: 1px solid rgba(212, 175, 55, 0.35);
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.85), 0 0 25px rgba(212, 175, 55, 0.1);
    max-height: 460px;
    overflow-y: auto;
    z-index: 9999;
    display: none;
    padding: 10px;
    animation: dropdownFadeIn 0.22s cubic-bezier(0.16, 1, 0.3, 1);
    scrollbar-width: thin;
    scrollbar-color: rgba(212, 175, 55, 0.3) rgba(20, 20, 20, 0.8);
}

.search-dropdown.active {
    display: block;
}

.search-dropdown::-webkit-scrollbar {
    width: 6px;
}

.search-dropdown::-webkit-scrollbar-track {
    background: rgba(20, 20, 20, 0.8);
}

.search-dropdown::-webkit-scrollbar-thumb {
    background: rgba(212, 175, 55, 0.3);
    border-radius: 3px;
}

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

.search-group-section {
    margin-bottom: 8px;
}

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

.search-group-title {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent-gold);
    padding: 6px 10px 4px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 6px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: 4px;
}

.search-result-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 9px 12px;
    border-radius: 10px;
    color: var(--text-main);
    text-decoration: none;
    transition: all 0.2s ease;
    cursor: pointer;
}

.search-result-item:hover,
.search-result-item.selected {
    background: rgba(212, 175, 55, 0.12);
    transform: translateX(3px);
}

.search-res-thumb {
    width: 44px;
    height: 44px;
    border-radius: 8px;
    object-fit: cover;
    background: #0a0a0a;
    border: 1px solid rgba(255, 255, 255, 0.08);
    flex-shrink: 0;
}

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

.search-res-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: #ffffff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.3;
}

.search-res-subtitle {
    font-size: 0.75rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.search-res-subtitle span {
    display: inline-flex;
    align-items: center;
    gap: 3px;
}

.search-res-price {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--accent-gold);
    flex-shrink: 0;
}

.search-res-arrow {
    color: var(--text-muted);
    font-size: 0.8rem;
    opacity: 0.5;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.search-result-item:hover .search-res-arrow {
    color: var(--accent-gold);
    opacity: 1;
    transform: translateX(2px);
}

.search-no-results {
    padding: 24px 16px;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.88rem;
}

.search-no-results i {
    font-size: 1.8rem;
    color: var(--accent-gold);
    opacity: 0.5;
    margin-bottom: 8px;
    display: block;
}

/* Features section */
.features-section {
    padding: 60px 0;
    background: rgba(15, 15, 15, 0.5);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.features-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    background: rgba(25, 25, 25, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: var(--radius);
    padding: 35px 25px;
    text-align: center;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(212, 175, 55, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.feature-icon-wrapper {
    width: 60px;
    height: 60px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: var(--transition);
}

.feature-card:hover .feature-icon-wrapper {
    background: var(--accent-gold);
}

.feature-icon-wrapper i {
    font-size: 1.6rem;
    color: var(--accent-gold);
    transition: var(--transition);
}

.feature-card:hover .feature-icon-wrapper i {
    color: var(--bg-dark);
}

.feature-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--text-main);
    margin-bottom: 10px;
}

.feature-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .features-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* Stats Strip */
.stats-strip {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(20, 20, 20, 0.8) 100%);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    padding: 40px 20px;
}

.stats-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    text-align: center;
}

.stat-item {
    flex: 1;
    min-width: 150px;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, #fceabb 0%, #d4af37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 5px;
    line-height: 1;
}

.stat-label {
    color: var(--text-muted);
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* FAQ Accordion */
.faq-section {
    max-width: 800px;
    margin: 80px auto 40px;
    padding: 0 20px;
}

.section-title-alt {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 40px;
    background: linear-gradient(135deg, #fceabb 0%, #d4af37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.faq-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: rgba(25, 25, 25, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: rgba(212, 175, 55, 0.2);
}

.faq-header {
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

.faq-question {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-main);
}

.faq-toggle {
    font-size: 0.9rem;
    color: var(--accent-gold);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(180deg);
}

.faq-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-content {
    padding: 0 25px 25px;
    color: var(--text-muted);
    font-size: 0.98rem;
    line-height: 1.6;
}

/* Other Restaurants in City Section */
.other-restaurants-section {
    background: rgba(15, 15, 15, 0.7);
    border-top: 1px solid var(--border-color);
    padding: 60px 0;
    margin-top: 50px;
}

.other-restaurants-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

.other-restaurants-title {
    font-size: 1.8rem;
    font-family: var(--font-heading);
    background: linear-gradient(135deg, #fceabb 0%, #f8b500 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    line-height: 1.3;
}

.other-restaurants-title i {
    -webkit-text-fill-color: var(--accent-gold);
    color: var(--accent-gold);
    flex-shrink: 0;
    font-size: 0.9em;
}

.other-restaurants-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
}

.other-restaurant-card {
    background: rgba(25, 25, 25, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius);
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.other-restaurant-card:hover {
    transform: translateY(-5px) scale(1.01);
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow: 0 12px 35px rgba(212, 175, 55, 0.18);
}

.orc-thumbnail-wrapper {
    position: relative;
    width: 100%;
    height: 180px;
    overflow: hidden;
    background: rgba(15, 15, 15, 0.8);
}

.orc-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.other-restaurant-card:hover .orc-thumbnail {
    transform: scale(1.06);
}

.orc-distance-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(18, 18, 18, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: var(--accent-gold, #d4af37);
    font-size: 0.78rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 20px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    gap: 5px;
    z-index: 2;
}

.orc-card-body {
    padding: 22px 24px 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
    justify-content: space-between;
}

.orc-content {
    margin-bottom: 20px;
}

.orc-name {
    font-family: var(--font-heading);
    font-size: 1.45rem;
    color: var(--text-main);
    margin-bottom: 10px;
    line-height: 1.3;
}

.orc-address {
    color: var(--text-muted);
    font-size: 0.92rem;
    margin-bottom: 8px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.4;
}

.orc-address i {
    color: var(--accent-gold);
    margin-top: 3px;
    flex-shrink: 0;
}

.orc-phone {
    color: var(--text-muted);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.orc-phone i {
    color: var(--accent-gold);
}

.orc-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 11px 22px;
    border-radius: 30px;
    background: rgba(212, 175, 55, 0.08);
    color: var(--accent-gold);
    border: 1px solid rgba(212, 175, 55, 0.3);
    font-size: 0.92rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    width: 100%;
}

.other-restaurant-card:hover .orc-button {
    background: linear-gradient(135deg, #fceabb 0%, #d4af37 100%);
    color: var(--bg-dark);
    border-color: var(--accent-gold);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

@media (max-width: 768px) {
    .other-restaurants-section {
        padding: 40px 0;
    }
    .other-restaurants-container {
        padding: 0 12px;
    }
    .other-restaurants-title {
        font-size: 1.35rem;
        margin-bottom: 20px;
        gap: 8px;
    }
    .other-restaurants-grid, .home-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* Home Page Restaurant Listing Grid (matching Other Restaurants UI) */
.home-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
}

.restaurant-card {
    background: rgba(25, 25, 25, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius);
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.restaurant-card:hover {
    transform: translateY(-5px) scale(1.01);
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow: 0 12px 35px rgba(212, 175, 55, 0.18);
}

.rc-thumbnail-wrapper {
    position: relative;
    width: 100%;
    height: 190px;
    overflow: hidden;
    background: rgba(15, 15, 15, 0.8);
}

.rc-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.restaurant-card:hover .rc-thumbnail {
    transform: scale(1.06);
}

.rc-card-body {
    padding: 22px 24px 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
    justify-content: space-between;
}

.rc-content {
    margin-bottom: 20px;
}

.rc-name {
    font-family: var(--font-heading);
    font-size: 1.45rem;
    color: var(--text-main);
    margin-bottom: 10px;
    line-height: 1.3;
}

.rc-address {
    color: var(--text-muted);
    font-size: 0.92rem;
    margin-bottom: 8px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.4;
}

.rc-address i {
    color: var(--accent-gold);
    margin-top: 3px;
    flex-shrink: 0;
}

.rc-phone, .orc-phone {
    color: var(--text-muted);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.rc-phone i, .orc-phone i {
    color: var(--accent-gold);
}

.rc-rating, .orc-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 6px;
    font-size: 0.9rem;
}

.rc-button, .rc-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 11px 22px;
    border-radius: 30px;
    background: rgba(212, 175, 55, 0.08);
    color: var(--accent-gold);
    border: 1px solid rgba(212, 175, 55, 0.3);
    font-size: 0.92rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    width: 100%;
}

.restaurant-card:hover .rc-button,
.restaurant-card:hover .rc-link {
    background: linear-gradient(135deg, #fceabb 0%, #d4af37 100%);
    color: var(--bg-dark);
    border-color: var(--accent-gold);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

/* Restaurant Rating & Reviews Section */
.restaurant-rating-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 6px 14px;
    border-radius: 20px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    font-size: 0.95rem;
}

.stars-gold {
    color: var(--accent-gold);
    display: flex;
    align-items: center;
    gap: 3px;
}

.stars-gold.lg {
    font-size: 1.4rem;
    gap: 5px;
}

.rating-num {
    font-weight: 700;
    color: var(--text-main);
}

.reviews-count {
    color: var(--text-muted);
    font-size: 0.88rem;
}

.restaurant-reviews-section {
    background: rgba(15, 15, 15, 0.6);
    border-top: 1px solid var(--border-color);
    padding: 60px 0;
}

.reviews-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

.reviews-section-title {
    font-size: 1.8rem;
    font-family: var(--font-heading);
    background: linear-gradient(135deg, #fceabb 0%, #f8b500 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    line-height: 1.3;
}

.reviews-section-title i {
    -webkit-text-fill-color: var(--accent-gold);
    color: var(--accent-gold);
    flex-shrink: 0;
    font-size: 0.9em;
}

.reviews-overview-card {
    background: rgba(25, 25, 25, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius);
    padding: 35px 40px;
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.rating-score-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    padding-right: 40px;
}

.big-score {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 700;
    line-height: 1;
    background: linear-gradient(135deg, #fceabb 0%, #d4af37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 8px;
}

.total-reviews-text {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 8px;
}

.rating-breakdown {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.breakdown-row {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 0.9rem;
}

.star-lbl {
    width: 60px;
    color: var(--text-muted);
    white-space: nowrap;
}

.bar-bg {
    flex: 1;
    height: 8px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    overflow: hidden;
}

.bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #fceabb, #d4af37);
    border-radius: 10px;
}

.pct-lbl {
    width: 40px;
    text-align: right;
    color: var(--text-muted);
}

.user-reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 25px;
}

.user-review-card {
    background: rgba(25, 25, 25, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius);
    padding: 25px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.user-review-card:hover {
    transform: translateY(-4px);
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.12);
}

.ur-header {
    display: flex;
    align-items: center;
    gap: 12px;
}

.ur-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #d4af37 0%, #8a6d1c 100%);
    color: var(--bg-dark);
    font-weight: 700;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 2px 10px rgba(212, 175, 55, 0.2);
}

.ur-meta {
    flex: 1;
    overflow: hidden;
}

.ur-name {
    font-weight: 600;
    color: var(--text-main);
    font-size: 1rem;
}

.ur-date {
    font-size: 0.82rem;
    color: var(--text-muted);
}

.ur-rating {
    color: var(--accent-gold);
    font-size: 0.85rem;
    display: flex;
    gap: 2px;
}

.ur-comment {
    color: var(--text-main);
    font-size: 0.95rem;
    line-height: 1.5;
    font-style: italic;
    opacity: 0.95;
}

@media (max-width: 768px) {
    .reviews-container {
        padding: 0 12px;
    }
    .reviews-overview-card {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 25px;
    }
    .rating-score-box {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        padding-right: 0;
        padding-bottom: 25px;
    }
    .reviews-section-title {
        font-size: 1.35rem;
        margin-bottom: 20px;
        gap: 8px;
    }
    .user-reviews-grid {
        grid-template-columns: 1fr;
    }
}

/* Menu Photos Section */
.menu-photos-section {
    width: 100%;
    margin: 10px 0 35px;
    padding: 0;
}

.menu-photos-container {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 28px;
}

.menu-photos-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border-color);
}

.menu-photos-title {
    font-size: 1.5rem;
    color: var(--accent-gold);
    display: flex;
    align-items: center;
    gap: 10px;
}

.menu-photos-title i {
    color: var(--accent-gold);
    flex-shrink: 0;
    font-size: 0.9em;
}

.slider-controls {
    display: flex;
    gap: 10px;
}

.slider-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    color: var(--accent-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.1rem;
    transition: var(--transition);
}

.slider-btn:hover {
    background: var(--accent-gold);
    color: var(--bg-dark);
    border-color: var(--accent-gold);
    transform: scale(1.08);
}

.menu-photos-slider-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.menu-photos-track {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    padding: 8px 4px 18px 4px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: var(--accent-gold) rgba(255, 255, 255, 0.05);
}

.menu-photos-track::-webkit-scrollbar {
    height: 6px;
}

.menu-photos-track::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

.menu-photos-track::-webkit-scrollbar-thumb {
    background: var(--accent-gold);
    border-radius: 10px;
}

.menu-photos-track .menu-photo-card {
    flex: 0 0 200px;
    scroll-snap-align: start;
}

@media (max-width: 600px) {
    .menu-photos-track .menu-photo-card {
        flex: 0 0 170px;
    }
}

.menu-photo-card {
    background: #1a1a1a;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition);
}

.menu-photo-card:hover {
    transform: translateY(-4px);
    border-color: var(--accent-gold);
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.15);
}

.photo-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 146 / 195;
    overflow: hidden;
    background: #181818;
}

.photo-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, #181818 0%, #252525 50%, #181818 100%);
    background-size: 200% 100%;
    animation: skeletonShimmer 1.5s infinite;
    z-index: 0;
}

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

.menu-photo-img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1;
    transition: transform 0.4s ease;
}

.menu-photo-card:hover .menu-photo-img {
    transform: scale(1.05);
}

.photo-overlay-icon {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    color: var(--accent-gold);
    font-size: 1.8rem;
    z-index: 2;
}

.menu-photo-card:hover .photo-overlay-icon {
    opacity: 1;
}

.photo-date-tag {
    padding: 10px 14px;
    font-size: 0.85rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 6px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Lightbox Modal with Interactive Zoom */
.photo-modal {
    display: none;
    position: fixed;
    z-index: 99999;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.93);
    backdrop-filter: blur(8px);
    flex-direction: column;
    overflow: hidden;
    user-select: none;
}

.modal-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 24px;
    background: rgba(18, 18, 18, 0.95);
    border-bottom: 1px solid var(--border-color);
    z-index: 10;
}

.modal-caption-text {
    color: var(--text-main);
    font-size: 1rem;
    font-weight: 500;
}

.modal-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.modal-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid var(--border-color);
    color: var(--text-main);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 0.95rem;
    transition: var(--transition);
}

.modal-btn:hover {
    background: var(--accent-gold);
    color: var(--bg-dark);
    border-color: var(--accent-gold);
}

.modal-btn.close-btn {
    background: rgba(255, 60, 60, 0.2);
    border-color: rgba(255, 60, 60, 0.4);
    color: #ff6b6b;
}

.modal-btn.close-btn:hover {
    background: #ff4d4d;
    color: #fff;
}

.modal-viewport {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
    cursor: zoom-in;
    touch-action: none;
}

.photo-modal-content {
    max-width: 90vw;
    max-height: 82vh;
    object-fit: contain;
    border-radius: 6px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.8);
    transition: transform 0.15s ease-out;
    transform-origin: center center;
}

.zoom-hint {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.75);
    color: var(--text-muted);
    font-size: 0.82rem;
    padding: 6px 16px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    pointer-events: none;
    z-index: 10;
}

/* Modal Side Navigation Buttons */
.modal-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(18, 18, 18, 0.85);
    border: 1px solid var(--accent-gold);
    color: var(--accent-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.3rem;
    z-index: 25;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
}

.modal-nav-btn:hover {
    background: var(--accent-gold);
    color: var(--bg-dark);
    transform: translateY(-50%) scale(1.12);
    box-shadow: 0 6px 24px rgba(212, 175, 55, 0.35);
}

.modal-prev-btn {
    left: 24px;
}

.modal-next-btn {
    right: 24px;
}

@media (max-width: 600px) {
    .modal-nav-btn {
        width: 42px;
        height: 42px;
        font-size: 1rem;
    }
    .modal-prev-btn {
        left: 12px;
    }
    .modal-next-btn {
        right: 12px;
    }

    .menu-photos-container {
        padding: 16px 12px;
    }

    .menu-photos-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: nowrap;
        gap: 8px;
        margin-bottom: 14px;
        padding-bottom: 10px;
    }

    .menu-photos-title {
        font-size: 1.05rem;
        gap: 6px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .menu-photos-title i {
        font-size: 0.95rem;
    }

    .slider-controls {
        flex-shrink: 0;
        gap: 6px;
    }

    .slider-btn {
        width: 32px;
        height: 32px;
        font-size: 0.85rem;
    }
}

/* Opening Hours Modal Popup & Button Styles */
.hours-toggle-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.4);
    color: var(--text-main);
    padding: 7px 16px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-family: var(--font-body);
    cursor: pointer;
    transition: all 0.25s ease;
    backdrop-filter: blur(8px);
}

.hours-toggle-btn i.fa-clock {
    color: var(--accent-gold);
}

.hours-toggle-btn .hours-arrow {
    font-size: 0.75rem;
    transition: transform 0.25s ease;
    color: var(--text-muted);
}

.hours-toggle-btn:hover {
    background: rgba(212, 175, 55, 0.2);
    border-color: var(--accent-gold);
    color: #fff;
}

.hours-toggle-btn:hover .hours-arrow {
    transform: translateX(3px);
    color: var(--accent-gold);
}

/* Opening Hours Fixed Modal */
.hours-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.78);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 99999;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.25s ease;
}

.hours-modal.active {
    display: flex;
    opacity: 1;
}

.hours-modal-content {
    background: #161616;
    border: 1px solid var(--accent-gold);
    border-radius: var(--radius);
    width: 100%;
    max-width: 420px;
    padding: 22px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.85);
    transform: translateY(20px);
    transition: transform 0.25s ease;
}

.hours-modal.active .hours-modal-content {
    transform: translateY(0);
}

.hours-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hours-modal-title-group {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px 12px;
}

.hours-modal-header h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--accent-gold);
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    white-space: nowrap;
}

.hours-modal-close {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--text-muted);
    font-size: 1.4rem;
    line-height: 1;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    flex-shrink: 0;
}

.hours-modal-close:hover {
    background: var(--accent-gold);
    color: var(--bg-dark);
    border-color: var(--accent-gold);
}

.hours-modal-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.hours-modal-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.95rem;
    color: var(--text-muted);
    padding: 10px 14px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
}

.hours-modal-item.is-today {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2) 0%, rgba(212, 175, 55, 0.05) 100%);
    border: 1px solid var(--accent-gold);
    color: #fff;
    font-weight: 600;
}

.hours-modal-item .day-name {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
    min-width: 0;
}

.today-badge {
    background: var(--accent-gold);
    color: var(--bg-dark);
    font-size: 0.65rem;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 10px;
    text-transform: uppercase;
}

.hours-modal-item .time-slot {
    font-family: monospace, var(--font-body);
    font-size: 0.9rem;
    white-space: nowrap;
    flex-shrink: 0;
}

/* Restaurant Opening Hours Section */
.restaurant-hours-section {
    padding: 60px 0;
    background: var(--bg-dark);
}

.hours-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

.hours-section-title {
    font-size: 1.8rem;
    font-family: var(--font-heading);
    background: linear-gradient(135deg, #fceabb 0%, #f8b500 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    line-height: 1.3;
}

.hours-section-title i {
    -webkit-text-fill-color: var(--accent-gold);
    color: var(--accent-gold);
    flex-shrink: 0;
}

.hours-card {
    background: rgba(25, 25, 25, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius);
    padding: 35px 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.hours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 16px 24px;
}

@media (max-width: 600px) {
    .restaurant-hours-section {
        padding: 40px 0;
    }
    .hours-container {
        padding: 0 12px;
    }
    .hours-card {
        padding: 16px 12px;
    }
    .hours-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    .hours-day-row {
        padding: 10px 12px;
    }
}

.hours-day-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    transition: var(--transition);
}

.hours-day-row:hover {
    border-color: rgba(212, 175, 55, 0.3);
    background: rgba(255, 255, 255, 0.04);
}

.hours-day-row.is-today {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(212, 175, 55, 0.05) 100%);
    border: 1px solid var(--accent-gold);
}

.hours-day-row .day-label {
    font-weight: 500;
    color: var(--text-main);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
    min-width: 0;
}

.hours-day-row.is-today .day-label {
    font-weight: 700;
    color: var(--accent-gold);
}

.today-pill {
    background: var(--accent-gold);
    color: var(--bg-dark);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hours-day-row .time-label {
    color: var(--text-muted);
    font-size: 0.92rem;
    font-weight: 500;
    white-space: nowrap;
    flex-shrink: 0;
}

.hours-day-row.is-today .time-label {
    color: #fff;
    font-weight: 600;
    white-space: nowrap;
    flex-shrink: 0;
}

/* Open / Closed Live Status Badges */
.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 1px 6px;
    border-radius: 10px;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    vertical-align: middle;
}

.hours-modal-item .status-badge,
.hours-day-row .status-badge {
    font-size: 0.58rem;
    padding: 1px 5px;
    gap: 3px;
    border-radius: 6px;
}

.status-badge.status-open {
    background: rgba(46, 204, 113, 0.15);
    color: #2ecc71;
    border: 1px solid rgba(46, 204, 113, 0.4);
}

.status-badge.status-open .status-dot {
    width: 5px;
    height: 5px;
    background-color: #2ecc71;
    border-radius: 50%;
    box-shadow: 0 0 5px #2ecc71;
    animation: pulse-green 2s infinite;
}

.hours-modal-item .status-badge.status-open .status-dot,
.hours-day-row .status-badge.status-open .status-dot {
    width: 4px;
    height: 4px;
}

.status-badge.status-closed {
    background: rgba(231, 76, 60, 0.15);
    color: #e74c3c;
    border: 1px solid rgba(231, 76, 60, 0.4);
}

.status-badge.status-closed .status-dot {
    width: 5px;
    height: 5px;
    background-color: #e74c3c;
    border-radius: 50%;
}

.hours-modal-item .status-badge.status-closed .status-dot,
.hours-day-row .status-badge.status-closed .status-dot {
    width: 4px;
    height: 4px;
}

@keyframes pulse-green {
    0% {
        box-shadow: 0 0 0 0 rgba(46, 204, 113, 0.7);
    }
    70% {
        box-shadow: 0 0 0 6px rgba(46, 204, 113, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(46, 204, 113, 0);
    }
}

/* ==========================================================================
   Top 10 City Page & Cities Directory Styles
   ========================================================================== */
.city-hero {
    position: relative;
    padding: 70px 20px 50px;
    text-align: center;
    background: radial-gradient(circle at 50% 20%, rgba(212, 175, 55, 0.15) 0%, rgba(10, 10, 10, 0.98) 70%);
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
    overflow: hidden;
}

.city-hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url('data:image/svg+xml,<svg width="40" height="40" viewBox="0 0 40 40" xmlns="http://www.w3.org/2000/svg"><g fill="%23d4af37" fill-opacity="0.03" fill-rule="evenodd"><path d="M0 40L40 0H20L0 20M40 40V20L20 40"/></g></svg>');
    opacity: 0.6;
    pointer-events: none;
}

.city-hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

.city-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.4);
    border-radius: 30px;
    color: var(--accent-gold);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.city-title {
    font-size: 2.8rem;
    line-height: 1.2;
    background: linear-gradient(135deg, #ffffff 0%, #fceabb 50%, #d4af37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 14px;
}

.city-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 680px;
    margin: 0 auto 24px;
    line-height: 1.5;
}

.city-stats-bar {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
    margin-top: 20px;
}

.stat-pill {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    font-size: 0.9rem;
    color: var(--text-main);
    backdrop-filter: blur(8px);
}

.stat-pill i {
    color: var(--accent-gold);
}

/* Page Container & Breadcrumbs */
.city-page-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 20px 80px;
}

.city-breadcrumbs {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.88rem;
    color: var(--text-muted);
    margin-bottom: 30px;
    padding: 10px 16px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

.city-breadcrumbs a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s;
}

.city-breadcrumbs a:hover {
    color: var(--accent-gold);
}

.city-breadcrumbs .sep {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.3);
}

.city-breadcrumbs .current {
    color: var(--accent-gold);
    font-weight: 600;
}

/* Section Titles */
.section-header-box {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.section-title {
    font-size: 1.6rem;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 10px;
}

.section-title i {
    color: var(--accent-gold);
}

.last-updated-text {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Top Restaurants List Cards */
.top-restaurants-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.top-res-card {
    position: relative;
    display: flex;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.top-res-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6);
    border-color: rgba(212, 175, 55, 0.4);
}

/* Rank Highlights */
.top-res-card.rank-1 {
    border-color: rgba(212, 175, 55, 0.5);
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.06) 0%, #151515 100%);
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.1);
}

.top-res-card.rank-2 {
    border-color: rgba(192, 192, 192, 0.3);
}

.top-res-card.rank-3 {
    border-color: rgba(205, 127, 50, 0.3);
}

/* Rank Badge */
.top-res-rank-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 20px;
    font-weight: 800;
    font-size: 1rem;
    color: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

.top-res-card.rank-1 .top-res-rank-badge {
    background: linear-gradient(135deg, #fceabb 0%, #d4af37 100%);
    color: #000;
}

.top-res-card.rank-2 .top-res-rank-badge {
    background: linear-gradient(135deg, #e0e0e0 0%, #9e9e9e 100%);
    color: #000;
}

.top-res-card.rank-3 .top-res-rank-badge {
    background: linear-gradient(135deg, #e5a975 0%, #cd7f32 100%);
    color: #fff;
}

.top-res-card.rank-other .top-res-rank-badge {
    background: rgba(10, 10, 10, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--accent-gold);
}

.rank-crown {
    font-size: 0.9rem;
    color: #000;
}

/* Image Wrapper */
.top-res-image-wrapper {
    flex: 0 0 320px;
    position: relative;
    overflow: hidden;
    background: #000;
}

.top-res-img {
    width: 100%;
    height: 100%;
    min-height: 220px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.top-res-card:hover .top-res-img {
    transform: scale(1.05);
}

/* Card Details */
.top-res-details {
    flex: 1;
    padding: 24px 28px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.top-res-header {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
}

.top-res-name {
    font-size: 1.6rem;
    margin: 0;
    line-height: 1.3;
}

.top-res-name a {
    color: var(--text-main);
    text-decoration: none;
    transition: color 0.2s;
}

.top-res-name a:hover {
    color: var(--accent-gold);
}

.top-res-rating-box {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.04);
    padding: 6px 12px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.top-res-rating-box .rating-num {
    font-weight: 700;
    color: var(--accent-gold);
}

.top-res-rating-box .reviews-count {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.top-res-info-meta {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 0.92rem;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    line-height: 1.4;
}

.meta-item i {
    color: var(--accent-gold);
    width: 16px;
    text-align: center;
}

.meta-item a {
    color: var(--text-muted);
    text-decoration: none;
}

.meta-item a:hover {
    color: var(--accent-gold);
}

.status-hours-wrap {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    margin-top: 4px;
}

.today-hours-snippet {
    font-size: 0.85rem;
    color: var(--text-main);
    background: rgba(255, 255, 255, 0.05);
    padding: 3px 10px;
    border-radius: 6px;
}

.top-res-desc {
    margin-top: 6px;
    font-size: 0.88rem;
    line-height: 1.5;
    color: #b0b0b0;
}

/* Actions Button */
.top-res-actions {
    display: flex;
    justify-content: flex-end;
    margin-top: 10px;
}

.view-menu-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 22px;
    background: linear-gradient(135deg, var(--accent-gold) 0%, #b8860b 100%);
    color: #000;
    font-weight: 600;
    font-size: 0.92rem;
    border-radius: 8px;
    text-decoration: none;
    box-shadow: 0 4px 14px rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
}

.view-menu-btn:hover {
    background: linear-gradient(135deg, var(--accent-hover) 0%, var(--accent-gold) 100%);
    transform: translateX(3px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5);
    color: #000;
}

.view-menu-btn i {
    transition: transform 0.2s ease;
}

.view-menu-btn:hover i {
    transform: translateX(4px);
}

/* Cities Grid & Compact Section */
.cities-grid-section, .other-cities-section {
    margin-top: 50px;
}

.cities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.city-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.city-card:hover {
    transform: translateY(-4px);
    border-color: var(--accent-gold);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
}

.city-card-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
}

.city-icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: rgba(212, 175, 55, 0.12);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--accent-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.city-name {
    font-size: 1.2rem;
    color: var(--text-main);
    margin: 0;
}

.city-state {
    font-size: 0.82rem;
    color: var(--text-muted);
}

.city-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
}

.res-count-pill {
    background: rgba(255, 255, 255, 0.05);
    padding: 4px 10px;
    border-radius: 12px;
    color: var(--text-muted);
}

.city-avg-rating {
    color: var(--accent-gold);
    font-weight: 600;
}

/* Compact Grid for Other Cities */
.cities-compact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 14px;
    margin-top: 20px;
}

.city-compact-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 18px;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.city-compact-card:hover {
    border-color: var(--accent-gold);
    background: rgba(212, 175, 55, 0.05);
    transform: translateY(-2px);
}

.city-compact-info {
    display: flex;
    flex-direction: column;
}

.city-compact-name {
    font-weight: 600;
    color: var(--text-main);
    font-size: 0.95rem;
}

.city-compact-state {
    font-size: 0.78rem;
    color: var(--text-muted);
}

.city-compact-count {
    font-size: 0.8rem;
    color: var(--accent-gold);
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Responsive Breakpoints */
@media (max-width: 900px) {
    .top-res-card {
        flex-direction: column;
    }
    
    .top-res-image-wrapper {
        flex: 0 0 auto;
        height: 220px;
        width: 100%;
    }
    
    .top-res-img {
        min-height: auto;
    }
    
    .city-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .header-container {
        padding: 10px 12px;
        gap: 8px;
    }
    
    .logo-text {
        font-size: 1.1rem;
        letter-spacing: 0.5px;
    }
    
    .site-nav {
        gap: 6px;
    }
    
    .nav-link, .back-home-link {
        padding: 5px 10px;
        font-size: 0.78rem;
        gap: 4px;
    }
    
    .city-hero {
        padding: 50px 14px 35px;
    }
    
    .city-title {
        font-size: 1.8rem;
        word-wrap: break-word;
    }
    
    .city-subtitle {
        font-size: 0.95rem;
    }
    
    .city-stats-bar {
        gap: 8px;
    }
    
    .stat-pill {
        padding: 6px 12px;
        font-size: 0.82rem;
    }
}

@media (max-width: 480px) {
    .header-container {
        padding: 8px 10px;
    }
    
    .site-logo {
        gap: 6px;
    }

    .logo-image {
        width: 26px;
        height: 26px;
    }
    
    .logo-text {
        font-size: 0.92rem;
        letter-spacing: 0px;
    }

    .site-nav {
        gap: 4px;
    }

    .nav-link, .back-home-link {
        padding: 5px 8px;
        font-size: 0.75rem;
    }
    
    .nav-link i, .back-home-link i {
        font-size: 0.85rem;
    }
    
    .city-hero {
        padding: 40px 12px 30px;
    }
    
    .city-title {
        font-size: 1.5rem;
    }
    
    .city-badge {
        font-size: 0.75rem;
        padding: 4px 12px;
    }
    
    .city-page-container {
        padding: 16px 10px 50px;
    }
    
    .city-breadcrumbs {
        padding: 8px 12px;
        font-size: 0.78rem;
        gap: 6px;
        flex-wrap: wrap;
    }
    
    .top-res-details {
        padding: 16px 14px;
    }
    
    .top-res-name {
        font-size: 1.3rem;
        word-break: break-word;
    }
    
    .top-res-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .top-res-rating-box {
        padding: 4px 8px;
        font-size: 0.8rem;
    }
    
    .view-menu-btn {
        width: 100%;
        justify-content: center;
        padding: 10px 16px;
        font-size: 0.88rem;
    }
    
    .status-hours-wrap {
        gap: 6px;
    }
    
    .today-hours-snippet {
        font-size: 0.78rem;
        white-space: normal;
        word-break: break-word;
    }
}

/* ==========================================================================
   Pagination Component Styles
   ========================================================================== */
.pagination-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 40px 0 20px;
    width: 100%;
}

.pagination-list {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0;
    flex-wrap: wrap;
    justify-content: center;
}

.page-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    min-width: 40px;
    height: 40px;
    padding: 0 14px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-main);
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.25s ease;
    user-select: none;
}

a.page-link:hover {
    border-color: var(--accent-gold);
    color: var(--accent-gold);
    background: rgba(212, 175, 55, 0.12);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.2);
}

.page-link.active {
    background: linear-gradient(135deg, #fceabb 0%, #d4af37 100%);
    color: #000;
    font-weight: 700;
    border-color: var(--accent-gold);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.page-link.disabled {
    opacity: 0.3;
    cursor: not-allowed;
    pointer-events: none;
}

.page-link.dots {
    border: none;
    background: transparent;
    color: var(--text-muted);
    min-width: 24px;
    padding: 0 4px;
    pointer-events: none;
    letter-spacing: 2px;
}

@media (max-width: 480px) {
    .pagination-list {
        gap: 6px;
    }
    
    .page-link {
        min-width: 34px;
        height: 34px;
        padding: 0 10px;
        font-size: 0.8rem;
    }
}

/* ==========================================================================
   Restaurant FAQ Accordion Section
   ========================================================================== */
.restaurant-faq-section {
    max-width: 1200px;
    margin: 50px auto;
    padding: 0 20px;
}

.faq-container {
    background: rgba(20, 20, 20, 0.65);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-radius: 16px;
    padding: 35px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.faq-section-title {
    font-family: 'Cinzel', serif;
    font-size: 1.7rem;
    font-weight: 700;
    color: var(--accent-gold);
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    padding-bottom: 15px;
}

.faq-section-title i {
    color: var(--accent-gold);
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.faq-item:hover {
    border-color: rgba(212, 175, 55, 0.35);
    background: rgba(255, 255, 255, 0.05);
}

.faq-item[open] {
    border-color: rgba(212, 175, 55, 0.4);
    background: rgba(212, 175, 55, 0.04);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}

.faq-question {
    padding: 18px 22px;
    font-size: 1.05rem;
    font-weight: 600;
    color: #f0f0f0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    list-style: none;
    user-select: none;
    transition: color 0.2s ease;
}

.faq-question::-webkit-details-marker {
    display: none;
}

.faq-question:hover {
    color: var(--accent-gold);
}

.faq-chevron {
    color: var(--accent-gold);
    font-size: 0.9rem;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
}

.faq-item[open] .faq-chevron {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 22px 20px 22px;
    color: #c4c4c4;
    font-size: 0.96rem;
    line-height: 1.7;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    margin-top: 5px;
    padding-top: 15px;
}

.faq-answer p {
    margin: 0;
}

@media (max-width: 768px) {
    .faq-container {
        padding: 25px 18px;
    }
    .faq-section-title {
        font-size: 1.35rem;
    }
    .faq-question {
        padding: 15px 16px;
        font-size: 0.95rem;
    }
    .faq-answer {
        padding: 0 16px 16px 16px;
        font-size: 0.9rem;
    }
}

/* ==========================================================================
   Editorial Dining Guide & Review Section
   ========================================================================== */
.editorial-review-section {
    margin-top: 40px;
    margin-bottom: 30px;
}

.editorial-review-card {
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(212, 175, 55, 0.22);
    border-radius: 16px;
    padding: 36px 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.editorial-review-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--accent-gold), transparent);
}

.editorial-review-card:hover {
    border-color: rgba(212, 175, 55, 0.38);
    background: rgba(255, 255, 255, 0.035);
}

.editorial-review-header {
    margin-bottom: 24px;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.editorial-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent-gold);
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.25);
    padding: 6px 14px;
    border-radius: 20px;
    font-weight: 600;
    margin-bottom: 12px;
}

.editorial-badge i {
    font-size: 0.85rem;
}

.editorial-review-title {
    font-size: 1.75rem;
    color: #ffffff;
    font-family: var(--font-heading);
    letter-spacing: 0.5px;
    margin: 0;
}

.editorial-review-body {
    color: #cfcfcf;
    font-size: 1.02rem;
    line-height: 1.8;
}

.editorial-review-body p {
    margin-bottom: 18px;
}

.editorial-review-body p:last-child {
    margin-bottom: 0;
}

.editorial-review-body h3 {
    font-size: 1.25rem;
    color: var(--accent-gold);
    font-family: var(--font-heading);
    margin: 28px 0 14px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.editorial-review-body ul {
    list-style: none;
    margin: 16px 0 24px;
    padding-left: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.editorial-review-body li {
    position: relative;
    padding-left: 24px;
}

.editorial-review-body li::before {
    content: "•";
    position: absolute;
    left: 6px;
    top: -2px;
    color: var(--accent-gold);
    font-size: 1.4rem;
    line-height: 1;
}

.editorial-review-body strong {
    color: #ffffff;
    font-weight: 600;
}

@media (max-width: 768px) {
    .editorial-review-card {
        padding: 24px 20px;
        border-radius: 12px;
    }
    
    .editorial-review-title {
        font-size: 1.35rem;
    }
    
    .editorial-review-body {
        font-size: 0.95rem;
        line-height: 1.7;
    }
    
    .editorial-review-body h3 {
        font-size: 1.15rem;
        margin: 22px 0 10px 0;
    }
}

/* ==========================================================================
   Menu Item Price Comparison Feature & Popup Modal
   ========================================================================== */

/* Interactive Menu Item Cards */
.menu-item {
    cursor: pointer;
    user-select: none;
    -webkit-user-select: none;
}

.menu-item:hover {
    background: rgba(28, 28, 28, 0.95);
    border-color: rgba(212, 175, 55, 0.45);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4), 0 0 16px rgba(212, 175, 55, 0.12);
    transform: translateY(-3px);
}

.item-compare-action {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--accent-gold);
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.25);
    padding: 3px 8px;
    border-radius: 12px;
    margin-left: auto;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.menu-item:hover .item-compare-action {
    background: var(--accent-gold);
    color: #0a0a0a;
    border-color: var(--accent-gold);
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.35);
}

/* Modal Overlay */
.price-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(5, 5, 5, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 99999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.25s ease, visibility 0.25s ease;
    box-sizing: border-box;
}

.price-modal-overlay.active {
    display: flex !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
}

/* Modal Dialog Window */
.price-modal-container {
    background: #141414;
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 16px;
    width: 100%;
    max-width: 780px;
    height: 88vh;
    max-height: 88vh;
    display: flex;
    flex-direction: column;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8), 0 0 35px rgba(212, 175, 55, 0.12);
    overflow: hidden;
    transform: scale(0.94) translateY(12px);
    transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1);
    min-height: 0;
}

.price-modal-overlay.active .price-modal-container {
    transform: scale(1) translateY(0);
}

.price-modal-header,
.price-modal-current-bar,
.price-modal-stats-grid,
.price-modal-controls {
    flex-shrink: 0;
}

/* Modal Header */
.price-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 22px;
    background: rgba(22, 22, 22, 0.95);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.price-modal-title-group {
    display: flex;
    align-items: center;
    gap: 12px;
}

.price-modal-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.25) 0%, rgba(212, 175, 55, 0.05) 100%);
    border: 1px solid rgba(212, 175, 55, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-gold);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.price-modal-title-text h3 {
    font-size: 1.1rem;
    color: #ffffff;
    margin: 0;
    line-height: 1.25;
}

.price-modal-title-text p {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin: 2px 0 0 0;
}

.price-modal-close {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: var(--text-muted);
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.price-modal-close:hover {
    background: rgba(239, 68, 68, 0.2);
    border-color: rgba(239, 68, 68, 0.5);
    color: #ef4444;
    transform: rotate(90deg);
}

/* Modal Current Item Highlight Bar */
.price-modal-current-bar {
    background: linear-gradient(135deg, rgba(28, 28, 28, 0.95) 0%, rgba(20, 20, 20, 0.95) 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding: 12px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.current-item-info {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.current-item-thumb {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    object-fit: cover;
    background: #0a0a0a;
    border: 1px solid rgba(212, 175, 55, 0.3);
    flex-shrink: 0;
}

.current-item-text {
    min-width: 0;
}

.current-item-name {
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 2px 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.current-item-res-tag {
    font-size: 0.78rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.current-item-res-tag i {
    color: var(--accent-gold);
}

.current-price-badge {
    text-align: right;
    flex-shrink: 0;
}

.current-price-label {
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-muted);
    margin-bottom: 2px;
}

.current-price-value {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--accent-gold);
    line-height: 1;
}

/* Stats Overview Grid */
.price-modal-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    padding: 10px 22px;
    background: rgba(18, 18, 18, 0.6);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.price-stat-card {
    background: rgba(25, 25, 25, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 8px;
    padding: 8px 10px;
    text-align: center;
    transition: var(--transition);
}

.price-stat-card:hover {
    border-color: rgba(212, 175, 55, 0.3);
    background: rgba(30, 30, 30, 0.9);
}

.price-stat-card.stat-lowest {
    border-color: rgba(34, 197, 94, 0.35);
    background: rgba(34, 197, 94, 0.08);
}

.price-stat-card.stat-savings {
    border-color: rgba(212, 175, 55, 0.35);
    background: rgba(212, 175, 55, 0.08);
}

.stat-card-label {
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-muted);
    margin-bottom: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.stat-lowest .stat-card-label {
    color: #4ade80;
}

.stat-savings .stat-card-label {
    color: var(--accent-gold);
}

.stat-card-value {
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
    font-family: var(--font-heading);
}

.stat-lowest .stat-card-value {
    color: #4ade80;
}

.stat-savings .stat-card-value {
    color: var(--accent-gold);
}

/* Modal Filters & Sort Bar */
.price-modal-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 22px;
    background: rgba(20, 20, 20, 0.9);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    gap: 10px;
    flex-wrap: wrap;
}

.controls-count {
    font-size: 0.82rem;
    color: var(--text-muted);
    font-weight: 500;
}

.controls-count strong {
    color: var(--text-main);
}

.controls-sort-group {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}

.sort-pill-btn {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-muted);
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.sort-pill-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    border-color: rgba(212, 175, 55, 0.4);
}

.sort-pill-btn.active {
    background: rgba(212, 175, 55, 0.18);
    border-color: var(--accent-gold);
    color: var(--accent-gold);
    font-weight: 600;
}

/* Modal Body / Scrollable Results */
.price-modal-body {
    flex: 1 1 auto;
    min-height: 0;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    padding: 16px 22px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    scrollbar-width: thin;
    scrollbar-color: rgba(212, 175, 55, 0.3) rgba(20, 20, 20, 0.8);
}

.price-modal-body::-webkit-scrollbar {
    width: 6px;
}

.price-modal-body::-webkit-scrollbar-track {
    background: rgba(20, 20, 20, 0.8);
}

.price-modal-body::-webkit-scrollbar-thumb {
    background: rgba(212, 175, 55, 0.3);
    border-radius: 3px;
}

.price-modal-body::-webkit-scrollbar-thumb:hover {
    background: var(--accent-gold);
}

/* Comparison Item Card */
.compare-res-card {
    background: rgba(26, 26, 26, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 12px 14px;
    display: flex;
    align-items: center;
    gap: 14px;
    transition: all 0.25s ease;
    position: relative;
}

.compare-res-card:hover {
    background: rgba(32, 32, 32, 0.95);
    border-color: rgba(212, 175, 55, 0.35);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
    transform: translateY(-2px);
}

.compare-res-card.is-cheapest {
    border-color: rgba(34, 197, 94, 0.4);
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.06) 0%, rgba(26, 26, 26, 0.8) 100%);
}

.compare-res-thumb-wrap {
    width: 62px;
    height: 62px;
    border-radius: 10px;
    overflow: hidden;
    background: #0e0e0e;
    border: 1px solid rgba(255, 255, 255, 0.08);
    flex-shrink: 0;
    position: relative;
}

.compare-res-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.compare-res-card:hover .compare-res-thumb {
    transform: scale(1.08);
}

.compare-res-details {
    flex: 1;
    min-width: 0;
}

.compare-res-name-link {
    font-size: 0.96rem;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: color 0.2s ease;
    margin-bottom: 2px;
}

.compare-res-name-link:hover {
    color: var(--accent-gold);
}

.compare-res-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 4px;
    flex-wrap: wrap;
}

.compare-res-meta span {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.compare-res-rating {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: #fbbf24;
    font-weight: 600;
}

.compare-res-rating i {
    font-size: 0.7rem;
}

.compare-item-dish-note {
    font-size: 0.72rem;
    color: #b0b0b0;
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.compare-dish-exact {
    color: #4ade80;
    font-size: 0.68rem;
    background: rgba(34, 197, 94, 0.12);
    border: 1px solid rgba(34, 197, 94, 0.3);
    padding: 1px 5px;
    border-radius: 4px;
    font-weight: 600;
    flex-shrink: 0;
}

.compare-dish-similar {
    color: #f59e0b;
    font-size: 0.68rem;
    background: rgba(245, 158, 11, 0.12);
    border: 1px solid rgba(245, 158, 11, 0.3);
    padding: 1px 5px;
    border-radius: 4px;
    font-weight: 600;
    flex-shrink: 0;
}

/* Comparison Price & Diff Column */
.compare-res-pricing {
    text-align: right;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
    flex-shrink: 0;
}

.compare-price-val {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1;
}

.diff-pill {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    padding: 2px 7px;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 600;
    white-space: nowrap;
}

.diff-pill.cheaper {
    background: rgba(34, 197, 94, 0.15);
    color: #4ade80;
    border: 1px solid rgba(34, 197, 94, 0.4);
}

.diff-pill.expensive {
    background: rgba(239, 68, 68, 0.15);
    color: #f87171;
    border: 1px solid rgba(239, 68, 68, 0.4);
}

.diff-pill.equal {
    background: rgba(255, 255, 255, 0.08);
    color: #d1d5db;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.compare-view-menu-btn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 5px 10px;
    border-radius: 6px;
    background: rgba(212, 175, 55, 0.12);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--accent-gold);
    font-size: 0.75rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    margin-top: 2px;
}

.compare-view-menu-btn:hover {
    background: var(--accent-gold);
    color: #0a0a0a;
    border-color: var(--accent-gold);
}

/* Skeleton Loading State */
.compare-skeleton-card {
    background: rgba(26, 26, 26, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 12px;
    padding: 14px;
    display: flex;
    align-items: center;
    gap: 14px;
    position: relative;
    overflow: hidden;
}

.compare-skeleton-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.04), transparent);
    animation: skeletonShimmer 1.5s infinite;
}

@keyframes skeletonShimmer {
    100% {
        left: 100%;
    }
}

.skel-box {
    background: rgba(255, 255, 255, 0.06);
    border-radius: 6px;
}

.skel-thumb {
    width: 62px;
    height: 62px;
    border-radius: 10px;
    flex-shrink: 0;
}

.skel-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.skel-line-title {
    height: 15px;
    width: 55%;
}

.skel-line-meta {
    height: 11px;
    width: 40%;
}

.skel-line-dish {
    height: 11px;
    width: 70%;
}

.skel-pricing {
    width: 85px;
    height: 36px;
    flex-shrink: 0;
}

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

.empty-icon {
    font-size: 2.8rem;
    color: var(--accent-gold);
    opacity: 0.6;
    margin-bottom: 14px;
}

.empty-title {
    font-size: 1.15rem;
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 8px;
}

.empty-desc {
    font-size: 0.88rem;
    line-height: 1.6;
    max-width: 460px;
    margin: 0 auto;
}

/* Responsive Styles for Price Comparison Modal on Mobile */
@media (max-width: 680px) {
    .price-modal-overlay {
        padding: 8px;
        align-items: center;
    }

    .price-modal-container {
        height: 94vh;
        max-height: 94vh;
        border-radius: 12px;
    }

    .price-modal-header {
        padding: 10px 14px;
    }

    .price-modal-icon {
        width: 32px;
        height: 32px;
        font-size: 0.95rem;
        border-radius: 8px;
    }

    .price-modal-title-text h3 {
        font-size: 0.98rem;
    }

    .price-modal-title-text p {
        display: none;
    }

    .price-modal-close {
        width: 30px;
        height: 30px;
        font-size: 1.1rem;
    }

    .price-modal-current-bar {
        padding: 8px 14px;
        gap: 10px;
    }

    .current-item-thumb {
        width: 40px;
        height: 40px;
        border-radius: 6px;
    }

    .current-item-name {
        font-size: 0.92rem;
    }

    .current-item-res-tag {
        font-size: 0.72rem;
    }

    .current-price-label {
        font-size: 0.65rem;
    }

    .current-price-value {
        font-size: 1.1rem;
    }

    /* Compact 4-column row for stats on mobile */
    .price-modal-stats-grid {
        grid-template-columns: repeat(4, 1fr);
        padding: 6px 12px;
        gap: 6px;
    }

    .price-stat-card {
        padding: 6px 4px;
        border-radius: 6px;
    }

    .stat-card-label {
        font-size: 0.62rem;
        margin-bottom: 2px;
        white-space: nowrap;
    }

    .stat-card-label i {
        display: none;
    }

    .stat-card-value {
        font-size: 0.88rem;
    }

    /* Controls row on mobile */
    .price-modal-controls {
        padding: 8px 12px;
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
    }

    .controls-count {
        font-size: 0.78rem;
        width: 100%;
    }

    .controls-sort-group {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 5px;
        width: 100%;
    }

    .sort-pill-btn {
        padding: 5px 4px;
        font-size: 0.7rem;
        white-space: nowrap;
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 4px;
        text-align: center;
        min-height: 28px;
    }

    .sort-pill-btn i {
        font-size: 0.65rem;
    }

    @media (max-width: 380px) {
        .controls-sort-group {
            grid-template-columns: repeat(2, 1fr);
            gap: 6px;
        }
        .sort-pill-btn {
            padding: 6px 8px;
        }
    }

    /* Scrollable Results Body on mobile */
    .price-modal-body {
        padding: 10px 12px 16px;
        gap: 8px;
    }

    /* Compact Competitor Cards on mobile */
    .compare-res-card {
        flex-direction: row;
        align-items: center;
        padding: 10px 12px;
        gap: 10px;
    }

    .compare-res-thumb-wrap {
        width: 50px;
        height: 50px;
        border-radius: 8px;
        flex-shrink: 0;
    }

    .compare-res-details {
        flex: 1;
        min-width: 0;
    }

    .compare-res-name-link {
        font-size: 0.9rem;
        margin-bottom: 2px;
    }

    .compare-res-meta {
        font-size: 0.7rem;
        gap: 6px;
        margin-bottom: 3px;
    }

    .compare-item-dish-note {
        font-size: 0.68rem;
    }

    .compare-dish-exact,
    .compare-dish-similar {
        font-size: 0.62rem;
        padding: 0 4px;
    }

    .compare-res-pricing {
        width: auto;
        flex-direction: column;
        align-items: flex-end;
        justify-content: center;
        border-top: none;
        padding-top: 0;
        margin-top: 0;
        gap: 3px;
        flex-shrink: 0;
    }

    .compare-price-val {
        font-size: 1.05rem;
    }

    .diff-pill {
        font-size: 0.65rem;
        padding: 2px 6px;
    }

    .compare-view-menu-btn {
        padding: 3px 7px;
        font-size: 0.68rem;
        margin-top: 0;
    }

    .skel-thumb {
        width: 50px;
        height: 50px;
    }
}


