
.menu-page-wrapper {
    padding-top: 150px; /* Space for fixed navbar */
    background: url('../img/blurred-chicken-2.png') center/cover fixed no-repeat;
    min-height: 100vh;
    padding-bottom: 80px;
}

/* Sidebar Styling */
.filter-sidebar {
    background: rgba(255, 255, 255, 0.1); /* Subtle glass effect */
    backdrop-filter: blur(5px);
    padding: 20px;
    border-radius: 20px;
}

.filter-label {
    font-weight: 700;
    color: #1a1a1a;
    font-size: 1rem;
}

.price-input input {
    background: #f1f1f1;
    border: none;
    border-radius: 10px;
    padding: 8px 12px;
    font-size: 0.9rem;
}

.category-list li a {
    text-decoration: none;
    color: #444;
    padding: 8px 0;
    display: block;
    transition: 0.2s;
    font-weight: 500;
}

.category-list li a:hover, 
.category-list li a.active {
    color: #000;
    font-weight: 700;
}

/* Search Bar Styling */
.search-wrapper {
    position: relative;
}

.search-input {
    background: #f1f1f1;
    border: none;
    border-radius: 50px;
    padding: 12px 20px 12px 50px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.search-icon {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #888;
}

/* Sort Dropdown Styling */
.sort-select {
    background-color: #f1f1f1;
    border: none;
    border-radius: 50px;
    padding: 10px 30px 10px 20px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
}

/* Ensure the meal cards fit perfectly in the grid */
.meal-card {
    background: #EDEDED; /* Brighter against the blurred bg */
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
}
