/* ===== RESTAURANTS PAGE STYLES ===== */

/* ===== HERO SECTION ===== */
.restaurant_hero_section {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #F5F5F3 0%, #ECECEC 100%);
    position: relative;
    overflow: hidden;
}

.restaurant_hero_section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/restaurants/hero-bg.jpg') center/cover;
    opacity: 0.1;
    z-index: 1;
}

.restaurant_hero_content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.restaurant_hero_title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 600;
    color: #2C2C2C;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.restaurant_hero_description {
    font-family: 'Inter', sans-serif;
    font-size: 1.2rem;
    color: #666666;
    line-height: 1.6;
    margin-bottom: 2rem;
}

/* ===== FILTER SECTION ===== */
.restaurant_filter_section {
    padding: 60px 0;
    background: #FFFFFF;
    border-bottom: 1px solid #E5E5E5;
}

.restaurant_filter_container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
}

.restaurant_search_box {
    width: 100%;
    max-width: 500px;
}

.search_input_group {
    position: relative;
    width: 100%;
}

.search_input_group i {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #8A7968;
    font-size: 1.1rem;
}

.search_input_group input {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    border: 2px solid #E5E5E5;
    border-radius: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: #2C2C2C;
    background: #FFFFFF;
    transition: all 0.3s ease;
}

.search_input_group input:focus {
    outline: none;
    border-color: #8A7968;
    box-shadow: 0 0 0 3px rgba(138, 121, 104, 0.1);
}

.restaurant_filter_options {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.filter_btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border: 2px solid #E5E5E5;
    border-radius: 25px;
    background: #FFFFFF;
    color: #666666;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter_btn:hover,
.filter_btn.active {
    border-color: #8A7968;
    background: #8A7968;
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(138, 121, 104, 0.3);
}

.filter_btn i {
    font-size: 0.9rem;
}

.filter_count {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.2rem 0.5rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-left: 0.3rem;
}

.filter_btn.active .filter_count {
    background: rgba(255, 255, 255, 0.3);
}

.filter_btn:hover .filter_count {
    background: rgba(255, 255, 255, 0.3);
}

/* Ensure clean filter buttons without unwanted numbering */
.filter_btn::after,
.filter_btn::before {
    content: none !important;
    display: none !important;
}

.restaurant_filter_options::before,
.restaurant_filter_options::after {
    content: none !important;
    display: none !important;
}

/* Reset all counters completely */
.filter_btn,
.restaurant_filter_options,
.restaurant_filter_container {
    counter-reset: none !important;
    counter-increment: none !important;
}

/* Additional counter reset for all possible selectors */
body, html, div, span, button {
    counter-reset: none !important;
    counter-increment: none !important;
}

/* Ensure no list styling */
.restaurant_filter_options {
    list-style: none !important;
    list-style-type: none !important;
}

.filter_btn {
    list-style: none !important;
    list-style-type: none !important;
    text-decoration: none !important;
    font-variant-numeric: normal !important;
}

/* Remove any potential auto-numbering */
.filter_btn,
.restaurant_filter_options,
.restaurant_filter_container {
    quotes: none !important;
}

.filter_btn:before,
.filter_btn:after,
.restaurant_filter_options:before,
.restaurant_filter_options:after {
    content: "" !important;
    display: none !important;
}

/* Ensure no outline or marker styles */
.filter_btn {
    outline-style: none !important;
    outline: none !important;
    marker: none !important;
}

/* Nuclear option - Force remove all possible auto-generated content */
.filter_btn * {
    counter-reset: none !important;
    counter-increment: none !important;
    list-style: none !important;
    list-style-type: none !important;
}

.filter_btn span::before,
.filter_btn span::after,
.filter_count::before,
.filter_count::after {
    content: none !important;
    display: none !important;
}

/* Completely reset all text formatting */
.filter_btn,
.filter_btn span,
.filter_count {
    font-variant-numeric: normal !important;
    quotes: none !important;
}

/* Override any possible global counter styles */
.restaurant_filter_section *,
.restaurant_filter_container *,
.restaurant_filter_options *,
.filter_btn * {
    counter-reset: unset !important;
    counter-increment: unset !important;
}

/* Force disable any ordered list styling that might inherit */
body .restaurant_filter_section,
body .restaurant_filter_container,
body .restaurant_filter_options,
body .filter_btn {
    list-style: none !important;
    list-style-type: none !important;
    list-style-position: outside !important;
    list-style-image: none !important;
}

/* ===== FEATURED RESTAURANTS SECTION ===== */
.restaurant_featured_section {
    padding: 80px 0;
    background: #FFFFFF;
}

.restaurant_featured_container {
    position: relative;
    margin-top: 3rem;
    width: 100%;
}

.restaurant_featured_slider {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE/Edge */
    padding-bottom: 1rem;
}

.restaurant_featured_slider::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}

.restaurant_featured_card {
    min-width: 350px;
    max-width: 350px;
    flex: 0 0 350px; /* Fixed width for proper sliding */
    background: #FFFFFF;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.restaurant_featured_card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
}

.restaurant_featured_image {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.restaurant_featured_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.restaurant_featured_card:hover .restaurant_featured_image img {
    transform: scale(1.05);
}

.restaurant_featured_overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, transparent 50%, rgba(0,0,0,0.3) 100%);
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 1rem;
}

.restaurant_cuisine_badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    color: #2C2C2C;
    font-size: 0.8rem;
    font-weight: 600;
}

.restaurant_featured_label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: #4CAF50;
    border-radius: 20px;
    color: #FFFFFF;
    font-size: 0.8rem;
    font-weight: 600;
}

.restaurant_featured_content {
    padding: 1.5rem;
}

.restaurant_featured_name {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #2C2C2C;
    margin-bottom: 0.75rem;
}

.restaurant_featured_description {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: #666666;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.restaurant_featured_dishes,
.restaurant_featured_location {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    color: #8A7968;
}

.restaurant_featured_dishes i,
.restaurant_featured_location i {
    color: #4CAF50;
    width: 16px;
}

.restaurant_featured_btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: #8A7968;
    color: #FFFFFF;
    text-decoration: none;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.restaurant_featured_btn:hover {
    background: #6D5F4E;
    transform: translateX(5px);
}

/* Slider Navigation */
.restaurant_featured_container {
    position: relative;
}

.featured_nav_btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: #FFFFFF;
    border: none;
    border-radius: 50%;
    color: #8A7968;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.featured_nav_btn:hover {
    background: #8A7968;
    color: #FFFFFF;
    transform: translateY(-50%) scale(1.1);
}

.featured_nav_btn:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(138, 121, 104, 0.25);
}

.featured_nav_btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    pointer-events: none;
}

.featured_nav_prev {
    left: 15px;
}

.featured_nav_next {
    right: 15px;
}

.restaurant_view_all_container {
    text-align: center;
    margin-top: 3rem;
}

.view_all_restaurants {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1.5rem 3rem;
    background: linear-gradient(135deg, #8A7968 0%, #6D5F4E 100%);
    color: #FFFFFF;
    border: none;
    border-radius: 50px;
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 8px 25px rgba(138, 121, 104, 0.3);
    text-transform: none;
    letter-spacing: 0.3px;
    min-width: 280px;
    overflow: hidden;
}

.view_all_restaurants::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.view_all_restaurants:hover::before {
    left: 100%;
}

.view_all_restaurants:hover {
    background: linear-gradient(135deg, #6D5F4E 0%, #5A4F3E 100%);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 35px rgba(138, 121, 104, 0.4);
}

.view_all_restaurants i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.view_all_restaurants:hover i {
    transform: scale(1.1);
}

/* Back button styling */
.restaurant_back_container {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid #E5E5E5;
}

.back_to_featured_btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1.2rem 2.5rem;
    background: linear-gradient(135deg, #FF6B6B 0%, #E55A5A 100%);
    color: #FFFFFF;
    border: none;
    border-radius: 50px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.3);
    letter-spacing: 0.3px;
    min-width: 250px;
    overflow: hidden;
}

.back_to_featured_btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.back_to_featured_btn:hover::before {
    left: 100%;
}

.back_to_featured_btn:hover {
    background: linear-gradient(135deg, #E55A5A 0%, #D14545 100%);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 30px rgba(255, 107, 107, 0.4);
}

.back_to_featured_btn i {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.back_to_featured_btn:hover i {
    transform: translateX(-3px);
}

/* ===== ALL RESTAURANTS SECTION ===== */
.restaurant_list_section {
    padding: 80px 0;
    background: #F5F5F3;
    animation: fadeInSection 0.6s ease-out;
}

@keyframes fadeInSection {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.restaurant_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.restaurant_card {
    background: #FFFFFF;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.restaurant_card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.restaurant_card_image {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.restaurant_card_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.restaurant_card:hover .restaurant_card_image img {
    transform: scale(1.03);
}

.restaurant_card_overlay {
    position: absolute;
    top: 1rem;
    left: 1rem;
    right: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.restaurant_cuisine_tag {
    padding: 0.4rem 0.8rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    color: #2C2C2C;
    font-size: 0.75rem;
    font-weight: 600;
}

.restaurant_featured_tag {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.4rem 0.8rem;
    background: #4CAF50;
    border-radius: 15px;
    color: #FFFFFF;
    font-size: 0.75rem;
    font-weight: 600;
}

.restaurant_card_content {
    padding: 1.25rem;
}

.restaurant_card_name {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: #2C2C2C;
    margin-bottom: 0.5rem;
}

.restaurant_card_description {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    color: #666666;
    line-height: 1.5;
    margin-bottom: 0.75rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.restaurant_card_dishes,
.restaurant_card_location {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    color: #8A7968;
}

.restaurant_card_dishes i,
.restaurant_card_location i {
    color: #4CAF50;
    width: 14px;
}

.restaurant_card_btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
    background: #8A7968;
    color: #FFFFFF;
    text-decoration: none;
    border-radius: 6px;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
    margin-top: 0.75rem;
}

.restaurant_card_btn:hover {
    background: #6D5F4E;
}

/* ===== SIGNATURE DISHES SECTION ===== */
.signature_dishes_section {
    padding: 80px 0;
    background: #FFFFFF;
}

.signature_dishes_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.signature_dish_card {
    background: #FFFFFF;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.signature_dish_card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.signature_dish_image {
    position: relative;
    width: 100%;
    height: 180px;
    overflow: hidden;
}

.signature_dish_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.signature_dish_card:hover .signature_dish_image img {
    transform: scale(1.05);
}

.signature_dish_overlay {
    position: absolute;
    top: 1rem;
    right: 1rem;
}

.cuisine_flag {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.4rem 0.8rem;
    background: rgba(138, 121, 104, 0.9);
    border-radius: 15px;
    color: #FFFFFF;
    font-size: 0.75rem;
    font-weight: 600;
}

.signature_dish_content {
    padding: 1rem;
}

.signature_dish_name {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #2C2C2C;
    margin-bottom: 0.5rem;
}

.signature_dish_description {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    color: #666666;
    line-height: 1.5;
    margin-bottom: 0.75rem;
}

.signature_dish_restaurant {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    color: #8A7968;
    margin-bottom: 1rem;
}

.signature_dish_restaurant i {
    color: #4CAF50;
    width: 14px;
}

.dish_detail_btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
    background: #4CAF50;
    color: #FFFFFF;
    text-decoration: none;
    border-radius: 6px;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.dish_detail_btn:hover {
    background: #45A049;
    transform: translateY(-2px);
}

/* ===== GALLERY SECTION ===== */
.restaurant_gallery_section {
    padding: 80px 0;
    background: #F5F5F3;
}

.restaurant_gallery_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 300px);
    gap: 2rem;
    margin-top: 3rem;
    max-width: 100%;
}

.gallery_item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    width: 100%;
    height: 100%;
    max-height: 100%;
    z-index: 1;
}

/* Remove complex positioning - use natural grid flow */
.gallery_large,
.gallery_item:nth-child(2),
.gallery_item:nth-child(3),
.gallery_item:nth-child(4),
.gallery_item:nth-child(5),
.gallery_item:nth-child(6) {
    /* All items use natural grid positioning */
    grid-row: auto;
    grid-column: auto;
}

.gallery_item:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.gallery_item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery_overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.7) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    padding: 1.5rem;
    opacity: 0;
    transition: all 0.3s ease;
}

.gallery_item:hover .gallery_overlay {
    opacity: 1;
}

.gallery_caption {
    color: #FFFFFF;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    text-align: center;
    margin-bottom: 1rem;
}

.gallery_view_btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid #FFFFFF;
    border-radius: 50%;
    color: #FFFFFF;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery_view_btn:hover {
    background: #FFFFFF;
    color: #2C2C2C;
    transform: scale(1.1);
}

/* ===== MAP SECTION ===== */
.restaurant_map_section {
    padding: 80px 0;
    background: #FFFFFF;
}

.restaurant_map_container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    margin-top: 3rem;
    align-items: stretch;
}

.restaurant_map_info {
    background: #F5F5F3;
    border-radius: 12px;
    padding: 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.map_info_card {
    background: #FFFFFF;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    flex: 1;
    display: flex;
    flex-direction: column;
}

.map_info_title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #2C2C2C;
    margin-bottom: 1.5rem;
}

.map_location_item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.map_location_item i {
    width: 20px;
    color: #4CAF50;
    font-size: 1.1rem;
    margin-top: 0.2rem;
}

.map_location_item h4 {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: #2C2C2C;
    margin-bottom: 0.25rem;
}

.map_location_item p {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    color: #666666;
    line-height: 1.5;
}

.map_directions {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #E5E5E5;
}

.map_directions h4 {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: #2C2C2C;
    margin-bottom: 0.75rem;
}

.map_directions ol {
    padding-left: 1rem;
}

.map_directions li {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    color: #666666;
    line-height: 1.5;
    margin-bottom: 0.5rem;
}

.restaurant_map_display {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.restaurant_map_display iframe {
    width: 100%;
    height: 100%;
    border: none;
    flex: 1;
}

/* ===== SECTION HEADERS ===== */
.section_header {
    text-align: center;
    margin-bottom: 3rem;
}

.section_title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: #2C2C2C;
    margin-bottom: 1rem;
}

.section_subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    color: #666666;
    line-height: 1.6;
}

/* ===== LIGHTBOX ===== */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox_overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.lightbox_content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lightbox_close {
    position: absolute;
    top: -50px;
    right: 0;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid #FFFFFF;
    border-radius: 50%;
    color: #FFFFFF;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.lightbox_close:hover {
    background: #FFFFFF;
    color: #2C2C2C;
    transform: scale(1.1);
}

.lightbox_image {
    max-width: 100%;
    max-height: 70vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

.lightbox_caption {
    margin-top: 1rem;
    color: #FFFFFF;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    text-align: center;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

/* ===== NO RESULTS MESSAGE ===== */
.no_results_message {
    grid-column: 1 / -1;
    text-align: center;
    padding: 3rem 2rem;
    background: #FFFFFF;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.no_results_content i {
    font-size: 3rem;
    color: #E5E5E5;
    margin-bottom: 1rem;
}

.no_results_content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #2C2C2C;
    margin-bottom: 0.5rem;
}

.no_results_content p {
    font-family: 'Inter', sans-serif;
    color: #666666;
    font-size: 0.9rem;
}

/* ===== CUISINE COLORS ===== */
.cuisine_vietnamese { color: #FF6B6B; }
.cuisine_japanese { color: #4ECDC4; }
.cuisine_korean { color: #FFE66D; }
.cuisine_thai { color: #95E1D3; }
.cuisine_khmer { color: #A8E6CF; }
.cuisine_chinese { color: #FFB74D; }

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.restaurant_card,
.restaurant_featured_card,
.signature_dish_card {
    animation: fadeInUp 0.6s ease-out;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
    .restaurant_featured_slider {
        gap: 1.5rem;
    }
    
    .restaurant_featured_card {
        min-width: 300px;
        max-width: 300px;
    }
    
    .restaurant_map_container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .restaurant_hero_title {
        font-size: 2.5rem;
    }
    
    .restaurant_hero_description {
        font-size: 1rem;
    }
    
    .restaurant_filter_container {
        gap: 1.5rem;
    }
    
    .restaurant_filter_options {
        gap: 0.75rem;
    }
    
    .filter_btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
    }
    
    .restaurant_featured_card {
        min-width: 300px;
        max-width: 300px;
        flex: 0 0 300px;
    }
    
    .featured_nav_btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .featured_nav_prev {
        left: 10px;
    }
    
    .featured_nav_next {
        right: 10px;
    }
    
    .restaurant_grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .signature_dishes_grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1rem;
    }
    
    .restaurant_gallery_grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 250px);
        gap: 1.5rem;
    }

    /* Mobile responsive gallery layout - natural grid flow */
    .gallery_large,
    .gallery_item:nth-child(2),
    .gallery_item:nth-child(3),
    .gallery_item:nth-child(4),
    .gallery_item:nth-child(5),
    .gallery_item:nth-child(6) {
        grid-row: auto;
        grid-column: auto;
    }
    
    /* Mobile button styles */
    .view_all_restaurants {
        padding: 1.2rem 2rem;
        font-size: 1rem;
        min-width: 240px;
        gap: 0.6rem;
    }
    
    .back_to_featured_btn {
        padding: 1rem 2rem;
        font-size: 0.95rem;
        min-width: 220px;
        gap: 0.6rem;
    }
    
    .section_title {
        font-size: 2rem;
    }
    

    
    .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .section_title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .restaurant_hero_section {
        padding: 100px 0 60px;
    }
    
    .restaurant_hero_title {
        font-size: 2rem;
    }
    
    .filter_btn {
        flex: 1;
        min-width: 120px;
        justify-content: center;
    }
    
    .restaurant_featured_content,
    .restaurant_card_content {
        padding: 1rem;
    }
    
    .section_title {
        font-size: 1.75rem;
    }
    
    .restaurant_featured_card {
        min-width: 280px;
        max-width: 280px;
        flex: 0 0 280px;
    }
    
    .featured_nav_btn {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .featured_nav_prev {
        left: 5px;
    }
    
    .featured_nav_next {
        right: 5px;
    }

    /* Ultra mobile gallery layout - single column */
    .restaurant_gallery_grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(6, 220px);
        gap: 1rem;
    }

    .gallery_large,
    .gallery_item:nth-child(2),
    .gallery_item:nth-child(3),
    .gallery_item:nth-child(4),
    .gallery_item:nth-child(5),
    .gallery_item:nth-child(6) {
        grid-row: auto;
        grid-column: 1;
    }
}

/* ===== ACCESSIBILITY ===== */
.filter_btn:focus,
.restaurant_card_btn:focus,
.restaurant_featured_btn:focus,
.gallery_view_btn:focus {
    outline: 2px solid #8A7968;
    outline-offset: 2px;
}

.restaurant_card:focus-within,
.signature_dish_card:focus-within {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.filter_btn[disabled] {
    opacity: 0.7;
    cursor: not-allowed;
}
.filter_btn .fa-spinner {
    margin-right: 0.5rem;
}
.fa-spin {
    animation: fa-spin 1s infinite linear;
}
@keyframes fa-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(359deg); }
}