/* Menu Page Specific Styles - Mobile First */

.page-header {
    background: linear-gradient(135deg, var(--gw-jade-900), var(--gw-jade-700));
    color: var(--gw-white);
    text-align: center;
    padding: 136px 0 40px; /* Increased top padding to account for fixed header (80px + 56px) */
}

.page-header h1 {
    font-family: 'Cinzel', serif;
    font-size: 2.4rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: .04em;
    color: var(--gw-white);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.page-header p {
    font-size: 1.6rem;
    opacity: 0.9;
    color: var(--gw-white);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    margin-bottom: 2rem;
}

/* Download Menu Button */
.menu-download-section {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
}

.download-menu-btn {
    background-color: transparent;
    color: var(--gw-white);
    border: 2px solid var(--gw-white);
    padding: 1rem 2rem;
    border-radius: 25px;
    font-size: 1.4rem;
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.3s ease;
    text-shadow: none;
    min-width: 200px;
    justify-content: center;
}

.download-menu-btn:hover {
    background-color: var(--gw-white);
    color: var(--gw-jade-900);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.download-menu-btn i {
    font-size: 1.6rem;
}

/* Menu Categories Filter */
.menu-categories {
    padding: 1.5rem 0;
    background: linear-gradient(135deg, var(--gw-parchment) 0%, #F5F2E7 100%);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.menu-filter-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.menu-filter-header h2 {
    font-family: 'Cinzel', serif;
    font-size: 2.2rem;
    color: var(--gw-umber);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.menu-filter-header p {
    font-size: 1.4rem;
    color: var(--gw-charcoal);
    opacity: 0.8;
}

/* Search Bar */
.menu-search {
    margin-bottom: 2.5rem;
}

.search-input-container {
    position: relative;
    max-width: 400px;
    margin: 0 auto;
}

.search-input-container i.fa-search {
    position: absolute;
    left: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gw-gold);
    font-size: 1.4rem;
    z-index: 2;
}

#menu-search {
    width: 100%;
    padding: 1.2rem 1.5rem 1.2rem 4.5rem;
    border: 2px solid var(--gw-gold);
    border-radius: 25px;
    font-size: 1.4rem;
    background: var(--gw-white);
    color: var(--gw-charcoal);
    transition: var(--transition);
    outline: none;
}

#menu-search:focus {
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
    border-color: var(--gw-jade-700);
}

.clear-search {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--gw-charcoal);
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    opacity: 0;
    transition: var(--transition);
}

.clear-search.visible {
    opacity: 0.6;
}

.clear-search:hover {
    opacity: 1;
    background: rgba(212, 175, 55, 0.1);
}

/* Category Filters */
.category-filters-wrapper {
    position: relative;
    margin-bottom: 2rem;
}

/* Scroll fade indicators for better UX */
.category-filters-wrapper::before,
.category-filters-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    width: 20px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.category-filters-wrapper::before {
    left: 0;
    background: linear-gradient(to right, var(--gw-cream), transparent);
}

.category-filters-wrapper::after {
    right: 0;
    background: linear-gradient(to left, var(--gw-cream), transparent);
}

/* Show indicators on mobile when content overflows */
@media (max-width: 768px) {
    .category-filters-wrapper::after {
        opacity: 1;
    }
}

.category-filters {
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 1rem;
    padding: 0 1rem 1rem;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: thin;
    scrollbar-color: var(--gw-gold) transparent;
    /* Enhanced mobile scrolling */
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
    /* Add momentum scrolling for iOS */
    -webkit-overflow-scrolling: touch;
}

.category-filters::-webkit-scrollbar {
    height: 4px;
}

.category-filters::-webkit-scrollbar-track {
    background: transparent;
}

.category-filters::-webkit-scrollbar-thumb {
    background: var(--gw-gold);
    border-radius: 2px;
}

/* Mobile scrollbar enhancement */
@media (max-width: 768px) {
    .category-filters::-webkit-scrollbar {
        height: 6px;
    }
    
    .category-filters::-webkit-scrollbar-thumb {
        background: var(--gw-gold);
        border-radius: 3px;
        opacity: 0.8;
    }
    
    .category-filters::-webkit-scrollbar-thumb:hover {
        background: #B8912C;
    }
}

.filter-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.2rem 1.8rem;
    border: 2px solid var(--gw-gold);
    background: var(--gw-white);
    color: var(--gw-gold);
    border-radius: 12px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 1.2rem;
    font-family: 'Noto Sans', sans-serif;
    min-width: 90px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
}

.filter-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s;
}

.filter-btn:hover::before {
    left: 100%;
}

.filter-btn i {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    transition: transform 0.3s ease;
}

.filter-btn span {
    font-size: 1.1rem;
    line-height: 1.2;
}

.filter-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
    border-color: var(--gw-jade-700);
    color: var(--gw-jade-700);
}

.filter-btn:hover i {
    transform: scale(1.1);
}

.filter-btn.active {
    background: linear-gradient(135deg, var(--gw-gold), #B8912C);
    color: var(--gw-white);
    border-color: var(--gw-gold);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.filter-btn.active i {
    transform: scale(1.05);
}

.filter-btn:active {
    transform: translateY(-1px);
    transition: transform 0.1s ease;
}

/* Filter Results Counter */
.filter-results {
    text-align: center;
    margin-top: 1rem;
}

#results-count {
    font-size: 1.3rem;
    color: var(--gw-charcoal);
    opacity: 0.7;
    font-style: italic;
}

/* Search Highlight Styles */
.search-highlight {
    background: linear-gradient(135deg, var(--gw-gold), #B8912C);
    color: var(--gw-white);
    padding: 2px 4px;
    border-radius: 3px;
    font-weight: 600;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

/* Smooth transitions for category changes */
.menu-category {
    transition: opacity 0.4s ease, transform 0.4s ease;
}

/* Enhanced menu item animations */
.menu-item {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.menu-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.15);
}

/* Improved category filter animations */
.filter-btn {
    position: relative;
    overflow: hidden;
}

.filter-btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.filter-btn:active::after {
    width: 300px;
    height: 300px;
}

/* Loading state for smooth transitions */
.menu-section.loading {
    opacity: 0.7;
    pointer-events: none;
}

.menu-section.loading .menu-category {
    transform: scale(0.98);
}

/* Menu Section - Mobile First */
.menu-section {
    padding: 3rem 0;
    background-color: var(--gw-parchment);
}

.menu-category {
    margin-bottom: 4rem;
}

.category-title {
    font-family: 'Cinzel', serif;
    font-size: 2.2rem;
    color: var(--gw-umber);
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
    text-transform: uppercase;
    letter-spacing: .04em;
}

.category-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, var(--gw-gold), #B8912C);
}

.menu-grid {
    display: block;
    width: 100%;
}

/* Set Meals specific grid layout */
[data-category="set-meals"] .menu-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    width: 100%;
}

[data-category="set-meals"] .menu-card {
    min-height: auto;
    display: flex;
    flex-direction: column;
}

[data-category="set-meals"] .menu-item.featured {
    flex: 1;
    display: flex;
    flex-direction: column;
}

[data-category="set-meals"] .item-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

[data-category="set-meals"] .item-price {
    margin-top: auto;
    font-size: 2rem;
    font-weight: 700;
    color: var(--gw-gold);
    text-align: center;
    padding: 1rem 0;
    border-top: 2px solid var(--gw-gold);
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(212, 175, 55, 0.05));
}

/* Menu Cards - Mobile First */
.menu-card {
    background: var(--gw-parchment);
    background-image: 
        radial-gradient(circle at 1px 1px, rgba(100,67,33,0.15) 1px, transparent 0);
    background-size: 20px 20px;
    border: 2px solid var(--gw-gold);
    box-shadow: 0 2px 4px rgba(0,0,0,.1);
    padding: 1.5rem;
    border-radius: 8px;
    transition: var(--transition);
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    width: 100%;
    margin-bottom: 2rem;
}

.menu-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0,0,0,.15);
}

/* Menu Items - Mobile First */
.menu-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    position: relative;
}

/* For menu items inside grid layout */
.menu-grid .menu-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem;
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 8px;
    background: var(--gw-white);
    margin-bottom: 0;
    transition: all 0.3s ease;
}

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

.menu-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,.1);
}

.menu-grid .menu-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(212, 175, 55, 0.2);
    border-color: var(--gw-gold);
}

.menu-item.featured {
    border: 2px solid var(--gw-gold);
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.menu-item.featured::before {
    content: 'Chef\'s Special';
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--gw-gold);
    color: var(--gw-white);
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 600;
    z-index: 2;
}

.item-image {
    height: 150px;
    width: 100%;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 1rem;
    order: -1;
}

.item-image .placeholder-image {
    height: 100%;
    background: linear-gradient(135deg, var(--gw-gold), #B8912C);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--gw-white);
    border-radius: 0;
}

.item-image .placeholder-image i {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    opacity: 0.8;
}

.item-content {
    padding: 0;
    width: 100%;
}

.item-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: var(--gw-umber);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    line-height: 1.3;
    text-transform: none;
}

.signature {
    background: var(--gw-gold);
    color: var(--gw-white);
    font-size: 0.6rem;
    padding: 2px 6px;
    border-radius: 8px;
    font-weight: 500;
    margin-left: 8px;
}

.item-content p {
    color: var(--gw-charcoal);
    line-height: 1.5;
    margin-bottom: 0.8rem;
    font-size: 1.7rem;
}

.item-price {
    font-size: 2.0rem;
    font-weight: 700;
    color: var(--gw-gold);
    text-align: left;
    margin-top: 4px;
    font-family: 'Cinzel', serif;
}

/* Hidden categories for filter functionality */
.menu-category.hidden {
    display: none;
}

/* Spice Level Indicators */
.spice-level {
    display: inline-flex;
    gap: 2px;
    margin-left: 10px;
}

.spice-icon {
    color: #FF4444;
    font-size: 0.8rem;
}

/* Dietary Icons */
.dietary-icons {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.dietary-icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    color: var(--white);
    font-weight: bold;
}

.vegetarian {
    background-color: #28a745;
}

.vegan {
    background-color: #20c997;
}

.gluten-free {
    background-color: #fd7e14;
}

.spicy {
    background-color: #dc3545;
}

/* Special Offers */
.special-offer {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--accent-color);
    color: var(--white);
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 2;
}

/* Combo Deals */
.combo-section {
    background-color: var(--background-light);
    padding: 3rem 0;
    margin: 4rem 0;
    border-radius: var(--border-radius);
}

.combo-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--secondary-color);
    text-align: center;
    margin-bottom: 2rem;
}

.combo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.combo-item {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    border-left: 4px solid var(--primary-color);
}

.combo-item h3 {
    font-family: 'Playfair Display', serif;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.combo-includes {
    list-style: none;
    margin-bottom: 1rem;
}

.combo-includes li {
    padding: 0.25rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.combo-includes li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.combo-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-align: right;
}

.original-price {
    text-decoration: line-through;
    color: var(--text-light);
    font-size: 1rem;
    margin-right: 10px;
}

/* Responsive Design */
/* Small phones - maintain horizontal scroll */
@media (max-width: 360px) {
    .menu-filter-header h2 {
        font-size: 1.8rem;
    }
    
    .menu-filter-header p {
        font-size: 1.2rem;
    }
    
    .search-input-container {
        margin: 0 1rem;
    }
    
    .category-filters {
        display: flex;
        flex-wrap: nowrap;
        justify-content: flex-start;
        gap: 0.8rem;
        padding: 0 1rem 1rem;
        overflow-x: auto;
        overflow-y: hidden;
    }
    
    .filter-btn {
        padding: 0.8rem 1.2rem;
        min-width: 80px;
        font-size: 0.9rem;
        flex-shrink: 0;
    }
    
    .filter-btn i {
        font-size: 1.2rem;
        margin-bottom: 0.3rem;
    }
    
    .filter-btn span {
        font-size: 0.8rem;
        line-height: 1.1;
    }
}

/* Large phones like iPhone 12 Pro (390px) - horizontal scroll */
@media (min-width: 361px) and (max-width: 430px) {
    .menu-filter-header h2 {
        font-size: 1.9rem;
    }
    
    .menu-filter-header p {
        font-size: 1.3rem;
    }
    
    .search-input-container {
        margin: 0 1rem;
    }
    
    .category-filters {
        display: flex;
        flex-wrap: nowrap;
        justify-content: flex-start;
        gap: 0.9rem;
        padding: 0 1rem 1rem;
        overflow-x: auto;
        overflow-y: hidden;
        scrollbar-width: thin;
        scrollbar-color: var(--gw-gold) transparent;
    }
    
    .filter-btn {
        padding: 1rem 1.4rem;
        min-width: 85px;
        font-size: 1rem;
        flex-shrink: 0;
    }
    
    .filter-btn i {
        font-size: 1.5rem;
        margin-bottom: 0.4rem;
    }
    
    .filter-btn span {
        font-size: 0.9rem;
        line-height: 1.2;
    }
}

@media (max-width: 768px) {
    .page-header {
        padding: 156px 0 60px; /* Increased top padding for mobile (100px + 56px) */
    }
    
    .page-header h1 {
        font-size: 2.8rem;
        margin-bottom: 1rem;
        color: var(--gw-white);
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    }

    .page-header p {
        font-size: 1.5rem;
        color: var(--gw-white);
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    }
    
    .menu-filter-header {
        margin-bottom: 2rem;
    }
    
    .menu-search {
        margin-bottom: 2rem;
    }

    .filter-btn {
        flex-shrink: 0;
        min-width: 85px;
        padding: 1rem 1.2rem;
        margin-right: 0.5rem;
    }

    .menu-grid {
        display: block;
        width: 100%;
    }

    .menu-card {
        display: grid;
        grid-template-columns: 1fr;
        gap: 1rem;
        width: 100%;
        margin-bottom: 2rem;
    }

    /* For eat-in menu where menu-grid is inside menu-card */
    .menu-card .menu-grid {
        grid-column: 1 / -1;
        display: grid;
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    /* Reset grid menu items for mobile */
    .menu-grid .menu-item {
        border: none;
        border-bottom: 1px solid rgba(212, 175, 55, 0.2);
        border-radius: 0;
        background: transparent;
        padding: 1.5rem 0;
    }

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

    /* Set Meals mobile layout */
    [data-category="set-meals"] .menu-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 2rem;
        width: 100%;
    }

    [data-category="set-meals"] .menu-card {
        display: flex;
        flex-direction: column;
        min-height: auto;
    }

    [data-category="set-meals"] .item-content h3 {
        font-size: 1.8rem;
        text-align: center;
        margin-bottom: 1rem;
        color: var(--gw-umber);
        text-transform: none;
    }

    [data-category="set-meals"] .item-content p {
        font-size: 1.3rem;
        line-height: 1.5;
        margin-bottom: 0.8rem;
    }

    [data-category="set-meals"] .item-price {
        font-size: 2.2rem;
        margin-top: 1rem;
        text-align: center;
    }

    .item-content h3 {
        font-size: 1.6rem;
        flex-direction: column;
        align-items: flex-start;
        line-height: 1.3;
        text-transform: none;
    }
    
    .item-content p {
        font-size: 1.4rem;
        line-height: 1.4;
    }

    .signature {
        margin-left: 0;
        margin-top: 0.5rem;
        align-self: flex-start;
    }

    .combo-grid {
        grid-template-columns: 1fr;
    }
}

/* Icon styles for dietary indicators */
.icon-chilli {
    color: var(--gw-ribbon);
}

.icon-veg {
    color: var(--gw-leaf);
}

/* Animation for menu items */
@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.menu-item {
    animation: fadeInScale 0.5s ease-out;
}

/* Loading animation for category switching */
.menu-category.loading {
    opacity: 0.5;
    pointer-events: none;
}

.menu-category.fade-in {
    animation: fadeInScale 0.4s ease-out;
}

/* Desktop Media Queries */
@media (min-width: 769px) and (max-width: 1024px) {
    /* Tablet styles */
    .menu-grid {
        display: block;
        width: 100%;
    }

    .menu-card {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        width: 100%;
        margin-bottom: 2rem;
    }

    /* For eat-in menu where menu-grid is inside menu-card */
    .menu-card .menu-grid {
        grid-column: 1 / -1;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    /* Set Meals tablet layout */
    [data-category="set-meals"] .menu-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
        width: 100%;
    }

    [data-category="set-meals"] .menu-card {
        display: flex;
        flex-direction: column;
        grid-template-columns: 1fr;
    }

    .category-filters {
        gap: 1.2rem;
        flex-wrap: wrap;
        overflow-x: visible;
        padding: 0;
    }

    .filter-btn {
        padding: 1.2rem 1.8rem;
        font-size: 1.2rem;
        min-width: 110px;
    }
}

@media (min-width: 1025px) {
    .page-header {
        padding: 200px 0 80px; /* Increased top padding for desktop (120px + 80px) */
    }

    .page-header h1 {
        font-size: 4rem;
        margin-bottom: 1.5rem;
        color: var(--gw-white);
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    }

    .page-header p {
        font-size: 1.8rem;
        color: var(--gw-white);
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
        margin-bottom: 2.5rem;
    }

    /* Download Menu Button - Desktop */
    .download-menu-btn {
        font-size: 1.6rem;
        padding: 1.2rem 2.4rem;
        min-width: 250px;
    }

    .download-menu-btn i {
        font-size: 1.8rem;
    }

    .menu-categories {
        padding: 4rem 0;
    }
    
    .menu-filter-header {
        margin-bottom: 3rem;
    }
    
    .menu-filter-header h2 {
        font-size: 2.8rem;
    }
    
    .menu-filter-header p {
        font-size: 1.6rem;
    }
    
    .menu-search {
        margin-bottom: 3rem;
    }
    
    .search-input-container {
        max-width: 500px;
    }
    
    #menu-search {
        padding: 1.4rem 1.8rem 1.4rem 5rem;
        font-size: 1.6rem;
    }
    
    .search-input-container i.fa-search {
        left: 2rem;
        font-size: 1.6rem;
    }

    .category-filters {
        gap: 1.5rem;
        flex-wrap: wrap;
        overflow-x: visible;
        padding: 0;
    }

    .filter-btn {
        padding: 1.4rem 2rem;
        font-size: 1.3rem;
        min-width: 120px;
        margin-right: 0;
    }
    
    .filter-btn i {
        font-size: 2rem;
        margin-bottom: 0.6rem;
    }
    
    .filter-btn span {
        font-size: 1.2rem;
    }

    .menu-section {
        padding: 6rem 0;
    }

    .menu-category {
        margin-bottom: 6rem;
    }

    .category-title {
        font-size: 3.2rem;
        margin-bottom: 4rem;
    }

    .category-title::after {
        bottom: -15px;
        width: 120px;
        height: 3px;
    }

    .menu-grid {
        display: block;
        width: 100%;
    }

    .menu-card {
        padding: 2rem;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
        width: 100%;
        margin-bottom: 3rem;
    }

    /* For eat-in menu where menu-grid is inside menu-card */
    .menu-card .menu-grid {
        grid-column: 1 / -1;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }

    /* Set Meals desktop layout */
    [data-category="set-meals"] .menu-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
        width: 100%;
    }

    [data-category="set-meals"] .menu-card {
        display: flex;
        flex-direction: column;
        grid-template-columns: 1fr;
        min-height: 500px;
    }

    [data-category="set-meals"] .item-content h3 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
        text-align: center;
        color: var(--gw-umber);
        text-transform: none;
    }

    [data-category="set-meals"] .item-content p {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 0.8rem;
    }

    [data-category="set-meals"] .item-price {
        font-size: 2.5rem;
        margin-top: 1.5rem;
    }

    .menu-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 20px rgba(0,0,0,.15);
    }

    .menu-item {
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 1.5rem 0;
    }

    .menu-item:hover {
        transform: translateY(-5px);
        box-shadow: var(--shadow-hover);
    }

    .menu-item.featured::before {
        top: 15px;
        right: 15px;
        padding: 5px 10px;
        border-radius: 15px;
        font-size: 0.8rem;
    }

    .item-image {
        height: 200px;
        width: 200px;
        flex-shrink: 0;
        order: 0;
        margin-bottom: 0;
    }

    .item-image .placeholder-image i {
        font-size: 3rem;
    }

    .item-content {
        padding: 1.5rem;
        flex: 1;
    }

    .item-content h3 {
        font-size: 1.8rem;
        text-transform: none;
    }

    .item-content p {
        font-size: 1.3rem;
        line-height: 1.6;
        margin-bottom: 1rem;
    }

    .item-price {
        font-size: 1.8rem;
        text-align: right;
        margin-top: 0;
    }

    .signature {
        font-size: 0.7rem;
        padding: 3px 8px;
        border-radius: 10px;
        margin-left: 10px;
    }

    /* Desktop Pricing Grid */
    .pricing-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }

    .pricing-card {
        padding: 3rem 2rem;
    }

    .pricing-card .price {
        font-size: 3.5rem;
    }

    /* Desktop Buffet Items */
    .buffet-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }

    .buffet-item {
        padding: 1.5rem;
    }

    .buffet-item i {
        font-size: 2rem;
    }

    /* Desktop Info Cards */
    .buffet-info {
        grid-template-columns: repeat(3, 1fr);
    }

    .info-card {
        padding: 2rem;
    }

    .info-card i {
        font-size: 3rem;
    }

    /* Desktop Rules Grid */
    .rules-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }

    .rule-item {
        padding: 2rem;
    }

    .rule-item i {
        font-size: 3rem;
    }
}

/* Large Desktop Styles for Set Meals */
@media (min-width: 1400px) {
    [data-category="set-meals"] .menu-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 3rem;
        max-width: 1400px;
        margin: 0 auto;
    }

    [data-category="set-meals"] .menu-card {
        min-height: 550px;
    }

    [data-category="set-meals"] .item-content h3 {
        font-size: 2.2rem;
        margin-bottom: 2rem;
        text-transform: none;
    }

    [data-category="set-meals"] .item-content p {
        font-size: 1.1rem;
        line-height: 1.7;
    }

    [data-category="set-meals"] .item-price {
        font-size: 2.8rem;
        margin-top: 2rem;
    }
}

/* Sunday Menu Specific Styles */
.pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.pricing-card {
    background: var(--gw-white);
    border: 2px solid var(--gw-gold);
    border-radius: var(--border-radius);
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.pricing-card h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.8rem;
    color: var(--gw-umber);
    margin-bottom: 1rem;
}

.pricing-card .price {
    font-family: 'Cinzel', serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--gw-gold);
    margin-bottom: 0.5rem;
}

.pricing-card p {
    color: var(--gw-charcoal);
    font-size: 1.4rem;
}

.buffet-info {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 3rem;
}

.info-card {
    background: var(--gw-white);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.info-card i {
    font-size: 2.5rem;
    color: var(--gw-gold);
    margin-bottom: 1rem;
}

.info-card h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.6rem;
    color: var(--gw-umber);
    margin-bottom: 0.5rem;
}

.info-card p {
    color: var(--gw-charcoal);
    font-size: 1.3rem;
}

.buffet-items {
    margin-top: 2rem;
}

.buffet-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.buffet-item {
    background: var(--gw-white);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: var(--border-radius);
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: var(--transition);
}

.buffet-item:hover {
    background: var(--gw-parchment);
    border-color: var(--gw-gold);
    transform: translateX(5px);
}

.buffet-item i {
    font-size: 1.6rem;
    color: var(--gw-gold);
    flex-shrink: 0;
}

.buffet-item span {
    font-size: 1.4rem;
    color: var(--gw-charcoal);
    font-weight: 500;
}

.buffet-rules {
    padding: 4rem 0;
    background: var(--gw-parchment);
}

.buffet-rules h2 {
    font-family: 'Cinzel', serif;
    font-size: 2.4rem;
    color: var(--gw-umber);
    text-align: center;
    margin-bottom: 3rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.rules-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.rule-item {
    background: var(--gw-white);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.rule-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.rule-item i {
    font-size: 2.5rem;
    color: var(--gw-ribbon);
    margin-bottom: 1rem;
}

.rule-item h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.6rem;
    color: var(--gw-umber);
    margin-bottom: 0.5rem;
}

.rule-item p {
    color: var(--gw-charcoal);
    font-size: 1.3rem;
    line-height: 1.5;
}

/* Dietary Indicators */
.dietary, .nuts, .spicy {
    display: inline-block;
    background-color: #28a745;
    color: white;
    padding: 2px 6px;
    border-radius: 3px;
    font-size: 0.8rem;
    font-weight: bold;
    margin-left: 0.3rem;
    position: relative;
    cursor: help;
    transition: all 0.3s ease;
}

.spicy {
    background-color: #dc3545;
}

.nuts {
    background-color: #fd7e14;
}

/* Hover tooltips for desktop */
@media (min-width: 769px) {
    .dietary::before,
    .nuts::before,
    .spicy::before {
        content: attr(data-tooltip);
        position: absolute;
        bottom: 150%;
        left: 50%;
        transform: translateX(-50%);
        background: rgba(0, 0, 0, 0.9);
        color: white;
        padding: 8px 12px;
        border-radius: 6px;
        font-size: 0.7rem;
        white-space: nowrap;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.3s ease;
        z-index: 1000;
    }
    
    .dietary::after,
    .nuts::after,
    .spicy::after {
        content: '';
        position: absolute;
        bottom: 135%;
        left: 50%;
        transform: translateX(-50%);
        width: 0;
        height: 0;
        border-left: 5px solid transparent;
        border-right: 5px solid transparent;
        border-top: 5px solid rgba(0, 0, 0, 0.9);
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.3s ease;
        z-index: 1000;
    }
    
    .dietary:hover::before,
    .dietary:hover::after,
    .nuts:hover::before,
    .nuts:hover::after,
    .spicy:hover::before,
    .spicy:hover::after {
        opacity: 1;
    }
    
    .dietary:hover,
    .nuts:hover,
    .spicy:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    }
}

/* Dietary indicators container for proper grouping */
.dietary-indicators {
    display: inline-flex;
    gap: 0.2rem;
    margin-left: 0.5rem;
    align-items: center;
}

/* Price Options for Multi-size items */
.price-options {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    margin-top: 0.5rem;
}

.price-option {
    display: flex;
    justify-content: space-between;
    padding: 0.2rem 0;
    font-size: 0.9rem;
    color: var(--gw-umber);
}

/* Dietary Key */
.dietary-key {
    background: linear-gradient(135deg, var(--gw-parchment) 0%, #F5F2E7 100%);
    padding: 2rem 0;
    margin-top: 3rem;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.dietary-key h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.8rem;
    color: var(--gw-umber);
    text-align: center;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.key-items {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.key-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.1rem;
    color: var(--gw-umber);
    font-weight: 500;
}

.key-item .dietary,
.key-item .nuts,
.key-item .spicy {
    margin-left: 0;
    margin-right: 0.3rem;
}

@media (max-width: 768px) {
    .key-items {
        gap: 1rem;
    }
    
    .key-item {
        font-size: 1rem;
    }
    
    .price-options {
        gap: 0.2rem;
    }
    
    .price-option {
        font-size: 0.85rem;
    }
}
