/* Delhi House Menu Page Styles - Redesigned to Match Home Page */

/* ===================================
   CSS VARIABLES
   =================================== */
:root {
    --brand-red: #EA1C24;
    --brand-gold: #C9A35E;
    --brand-blue: #81B09C;
    --dark-bg: #1A1A1A;
    --light-bg: #FAFAFA;
    --cream-bg: #FFF9F5;
    --text-dark: #222222;
    --text-light: #666666;
    /* Menu page specific background (matches inline rgb(24,49,46)) */
    --menu-deep-bg: #18312e;
}

/* ===================================
   FLOATING CART WIDGET
   =================================== */
.floating-cart-widget {
    position: fixed;
    top: 50%;
    right: 30px;
    transform: translateY(-50%);
    z-index: 999;
    animation: slideInRight 0.5s ease;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateY(-50%) translateX(100px);
    }

    to {
        opacity: 1;
        transform: translateY(-50%) translateX(0);
    }
}

.floating-cart-widget .cart-button {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #C9A35E 0%, #b89350 100%);
    border-radius: 50%;
    box-shadow: 0 8px 24px rgba(201, 163, 94, 0.4);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    cursor: pointer;
}

.floating-cart-widget .cart-button:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 32px rgba(201, 163, 94, 0.5);
    background: linear-gradient(135deg, #b89350 0%, #C9A35E 100%);
}

.floating-cart-widget .cart-button:active {
    transform: scale(1.05);
}

.floating-cart-widget .cart-icon-wrapper {
    position: relative;
    margin-top: 4px;
}

.floating-cart-widget .cart-icon-wrapper i {
    font-size: 22px;
    color: white;
}

.floating-cart-widget .cart-badge {
    position: absolute;
    top: -8px;
    right: -12px;
    background: #dc3545;
    color: white;
    font-size: 11px;
    font-weight: 700;
    min-width: 20px;
    height: 20px;
    line-height: 20px;
    text-align: center;
    border-radius: 10px;
    padding: 0 6px;
    border: 2px solid white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.floating-cart-widget .cart-badge.pulse-animation {
    animation: pulse 0.6s ease;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.3);
    }
}

.floating-cart-widget .cart-text {
    color: white;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Responsive adjustments for floating cart */
@media (max-width: 991.98px) {
    .floating-cart-widget {
        right: 20px;
    }

    .floating-cart-widget .cart-button {
        width: 70px;
        height: 70px;
    }

    .floating-cart-widget .cart-icon-wrapper i {
        font-size: 24px;
    }

    .floating-cart-widget .cart-text {
        font-size: 11px;
    }
}

@media (max-width: 767.98px) {
    .floating-cart-widget {
        bottom: 20px;
        top: auto;
        right: 20px;
        transform: none;
    }

    .floating-cart-widget .cart-button {
        width: 65px;
        height: 65px;
    }

    .floating-cart-widget .cart-icon-wrapper i {
        font-size: 22px;
    }

    .floating-cart-widget .cart-text {
        font-size: 10px;
    }

    .floating-cart-widget .cart-badge {
        top: -6px;
        right: -10px;
        min-width: 18px;
        height: 18px;
        line-height: 18px;
        font-size: 10px;
    }
}

/* ===================================
   MENU HERO BANNER - CENTERED CATERING STYLE
   =================================== */
.menu-hero-banner {
    position: relative;
    min-height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 70px 0 40px;
    margin-top: 0;
}

.menu-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.menu-hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4));
    z-index: 1;
}

.menu-hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, transparent 20%, rgba(0, 0, 0, 0.2) 100%);
    z-index: 2;
}

.menu-hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
}

/* ===================================
   LEFT FILTER SIDEBAR (Accordion + Checkboxes)
   =================================== */
.filter-sidebar {
    background: var(--menu-deep-bg);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 14px;
    color: rgba(255, 255, 255, 0.9);
    position: sticky;
    top: 20px;
    max-height: calc(100vh - 40px);
    overflow-y: auto;
    overflow-x: hidden;
    scrollbar-width: thin;
    scrollbar-color: var(--brand-gold) rgba(255, 255, 255, 0.1);
}

.filter-sidebar::-webkit-scrollbar {
    width: 6px;
}

.filter-sidebar::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 3px;
}

.filter-sidebar::-webkit-scrollbar-thumb {
    background: var(--brand-gold);
    border-radius: 3px;
}

.filter-sidebar::-webkit-scrollbar-thumb:hover {
    background: #b89350;
}

.filter-sidebar .filter-group-title {
    color: #ffffff;
    font-family: 'Jost', sans-serif;
    font-weight: 600;
    letter-spacing: .3px;
}

.filter-sidebar .accordion-item {
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 6px;
    overflow: hidden;
}

.filter-sidebar .accordion-item+.accordion-item {
    margin-top: 10px;
}

.filter-sidebar .accordion-button {
    background-color: rgba(255, 255, 255, 0.04);
    color: #ffffff;
    font-weight: 600;
}

.filter-sidebar .accordion-button:not(.collapsed) {
    color: #1A1A1A;
    background: linear-gradient(135deg, var(--brand-gold), #b89350);
    box-shadow: none;
}

.filter-sidebar .accordion-button::after {
    filter: invert(1) brightness(1.2);
    opacity: 0.8;
}

.filter-sidebar .accordion-collapse {
    background-color: rgba(255, 255, 255, 0.02);
}

.filter-sidebar .accordion-body {
    padding: 12px 14px;
    max-height: 400px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--brand-gold) rgba(255, 255, 255, 0.1);
}

.filter-sidebar .accordion-body::-webkit-scrollbar {
    width: 4px;
}

.filter-sidebar .accordion-body::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 2px;
}

.filter-sidebar .accordion-body::-webkit-scrollbar-thumb {
    background: var(--brand-gold);
    border-radius: 2px;
}

.filter-sidebar .accordion-body::-webkit-scrollbar-thumb:hover {
    background: #b89350;
}

.filter-sidebar .form-check-label {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

/* Sidebar checkbox visuals */
.filter-sidebar .form-check-input.sidebar-checkbox {
    width: 18px;
    height: 18px;
    border-radius: 4px;
    background-color: transparent;
    border: 2px solid rgba(255, 255, 255, 0.35);
    cursor: pointer;
}

.filter-sidebar .form-check-input.sidebar-checkbox:focus {
    box-shadow: 0 0 0 0.2rem rgba(201, 163, 94, 0.3);
    border-color: var(--brand-gold);
}

.filter-sidebar .form-check-input.sidebar-checkbox:checked {
    background-color: var(--brand-gold);
    border-color: var(--brand-gold);
}

.filter-sidebar .form-check-input.sidebar-checkbox:checked[type="checkbox"] {
    background-image: none;
    position: relative;
}

.filter-sidebar .form-check-input.sidebar-checkbox:checked[type="checkbox"]::after {
    content: '\2713';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -56%);
    color: #1A1A1A;
    font-weight: 700;
    font-size: 12px;
}

/* Price inputs + slider on dark background */
.filter-sidebar .price-inputs label {
    color: rgba(255, 255, 255, 0.75);
}

.filter-sidebar .price-input {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #ffffff;
}

.filter-sidebar .price-input:focus {
    border-color: var(--brand-gold);
    box-shadow: 0 0 0 0.2rem rgba(201, 163, 94, 0.25);
}

.filter-sidebar .price-separator {
    color: rgba(255, 255, 255, 0.6);
}

.filter-sidebar .price-slider {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 4px;
    outline: none;
}

.filter-sidebar .price-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--brand-gold);
    border: 2px solid #b89350;
    cursor: pointer;
}

.filter-sidebar .price-slider::-moz-range-thumb {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--brand-gold);
    border: 2px solid #b89350;
    cursor: pointer;
}

.filter-sidebar .price-labels span {
    color: rgba(255, 255, 255, 0.7);
}

/* Sidebar actions */
.filter-sidebar .filter-actions .btn-apply-filters {
    background: var(--brand-gold);
    border: none;
    color: #1A1A1A;
    font-weight: 700;
}

.filter-sidebar .filter-actions .btn-clear-filters {
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #ffffff;
}

.filter-sidebar .filter-actions .btn-clear-filters:hover {
    background: rgba(255, 255, 255, 0.08);
}

.menu-hero-text {
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section-badge {
    display: inline-block;
    font-family: 'Jost', sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--brand-gold);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    position: relative;
    padding: 0 60px;
}

.section-badge::before,
.section-badge::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 45px;
    height: 1px;
    background: var(--brand-gold);
}

.section-badge::before {
    left: 0;
}

.section-badge::after {
    right: 0;
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.25rem, 5vw, 2rem);
    font-weight: 600;
    color: #ffffff;
    line-height: 1.25;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.section-subtitle {
    font-family: 'Jost', sans-serif;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.8;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

/* Legacy class names for backward compatibility */
.menu-badge {
    display: inline-block;
    font-family: 'Jost', sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--brand-gold);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    position: relative;
    padding: 0 60px;
}

.menu-badge::before,
.menu-badge::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 45px;
    height: 1px;
    /* background: var(--brand-gold); */
}

.menu-badge::before {
    left: 0;
}

.menu-badge::after {
    right: 0;
}

.menu-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    font-weight: 600;
    color: #ffffff;
    line-height: 1.25;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.menu-subtitle {
    font-family: 'Jost', sans-serif;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.8;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

/* Inline Status Section */
.menu-status-inline {
    margin-top: 2rem;
}

.status-inline-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.status-inline-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    font-family: 'Jost', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    color: white;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    min-height: 42px;
}

.status-inline-badge.open {
    border-color: rgba(76, 175, 80, 0.5);
    background: rgba(76, 175, 80, 0.15);
}

.status-inline-badge.closed {
    border-color: rgba(255, 183, 77, 0.5);
    background: rgba(255, 183, 77, 0.15);
}

.status-inline-badge i {
    font-size: 1.125rem;
    color: var(--brand-gold);
}

.pulse-dot-inline {
    width: 12px;
    height: 12px;
    background: #4CAF50;
    border-radius: 50%;
    position: relative;
    animation: pulse-ring 2s infinite;
}

.pulse-dot-inline::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: #4CAF50;
    border-radius: 50%;
    animation: pulse-dot 2s infinite;
}

.current-time-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    font-family: 'Jost', sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 0.5px;
    min-height: 42px;
}

.current-time-badge i {
    font-size: 1rem;
    color: var(--brand-gold);
}

.btn-view-schedule {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    background: linear-gradient(135deg, var(--brand-gold), #b89350);
    border: 2px solid var(--brand-gold);
    border-radius: 50px;
    color: white;
    font-family: 'Jost', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    min-height: 42px;
}

.btn-view-schedule:hover {
    background: linear-gradient(135deg, var(--brand-gold), #b89350);
    border-color: var(--brand-gold);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(201, 163, 94, 0.4);
}

.btn-view-schedule i {
    font-size: 1rem;
}


/* Status Banner Card */
.menu-status-banner {
    animation: fadeInUp 1s ease-out 0.3s both;
}

.status-banner-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.08));
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.status-banner-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: linear-gradient(180deg, var(--brand-gold), rgba(201, 163, 94, 0.3));
}

.status-banner-card.open::before {
    background: linear-gradient(180deg, #4CAF50, rgba(76, 175, 80, 0.3));
}

.status-banner-card.closed::before {
    background: linear-gradient(180deg, #dc3545, rgba(220, 53, 69, 0.3));
}

.status-banner-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.6);
    border-color: rgba(255, 255, 255, 0.5);
}

.status-banner-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--brand-gold), #b89350);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 25px rgba(201, 163, 94, 0.5);
}

.status-banner-card.open .status-banner-icon {
    background: linear-gradient(135deg, #4CAF50, #45a049);
    box-shadow: 0 8px 25px rgba(76, 175, 80, 0.5);
}

.status-banner-card.closed .status-banner-icon {
    background: linear-gradient(135deg, #FFB74D, #FFA726);
    box-shadow: 0 8px 25px rgba(255, 183, 77, 0.5);
}

.status-banner-icon i {
    font-size: 2rem;
    color: white;
}

.status-banner-content {
    text-align: center;
    margin-bottom: 2rem;
}

.status-banner-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.pulse-dot-banner {
    width: 14px;
    height: 14px;
    background: #4CAF50;
    border-radius: 50%;
    position: relative;
    animation: pulse-ring 2s infinite;
}

.pulse-dot-banner::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: #4CAF50;
    border-radius: 50%;
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-ring {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(76, 175, 80, 0.7);
    }

    50% {
        box-shadow: 0 0 0 12px rgba(76, 175, 80, 0);
    }
}

@keyframes pulse-dot {

    0%,
    100% {
        transform: scale(0.95);
    }

    50% {
        transform: scale(1.1);
    }
}

.status-label {
    font-family: 'Jost', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.9);
}

.status-label.closed-label {
    color: rgba(255, 255, 255, 0.85);
}

.status-main-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin: 0 0 1rem 0;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.status-time-info {
    font-family: 'Jost', sans-serif;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.status-time-info i {
    color: var(--brand-gold);
    font-size: 0.875rem;
}

.view-schedule-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--brand-gold), #b89350);
    border: 2px solid var(--brand-gold);
    border-radius: 50px;
    color: white;
    font-family: 'Jost', sans-serif;
    font-size: 0.9375rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(201, 163, 94, 0.4);
}

.view-schedule-btn:hover {
    background: linear-gradient(135deg, #b89350, var(--brand-gold));
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(201, 163, 94, 0.5);
    border-color: #b89350;
}

.view-schedule-btn i {
    font-size: 1.125rem;
}

/* ===================================
   HOURS STATUS BAR - DEPRECATED (kept for backwards compatibility)
   =================================== */
.hours-status-bar {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.hours-status-bar.is-open {
    background: linear-gradient(135deg, rgba(40, 167, 69, 0.15), rgba(32, 201, 151, 0.15));
    border-bottom-color: rgba(40, 167, 69, 0.3);
}

.hours-status-bar.is-closed {
    background: linear-gradient(135deg, rgba(220, 53, 69, 0.15), rgba(200, 35, 51, 0.15));
    border-bottom-color: rgba(220, 53, 69, 0.3);
}

.status-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.status-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-family: 'Jost', sans-serif;
    font-size: 1.125rem;
    font-weight: 700;
    color: white;
    letter-spacing: 0.5px;
}

.pulse-dot {
    width: 12px;
    height: 12px;
    background: #4CAF50;
    border-radius: 50%;
    position: relative;
    animation: pulse-ring 2s infinite;
}

.pulse-dot::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: #4CAF50;
    border-radius: 50%;
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-ring {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(76, 175, 80, 0.7);
    }

    50% {
        box-shadow: 0 0 0 10px rgba(76, 175, 80, 0);
    }
}

@keyframes pulse-dot {

    0%,
    100% {
        transform: scale(0.95);
    }

    50% {
        transform: scale(1.1);
    }
}

.is-closed .status-badge i {
    color: #FFB74D;
    font-size: 1rem;
}

.time-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: 'Jost', sans-serif;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.85);
}

.time-detail {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.time-detail i {
    color: var(--brand-gold);
    font-size: 0.875rem;
}

.time-separator {
    color: rgba(255, 255, 255, 0.4);
    font-weight: 300;
}

.current-time {
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
}

.schedule-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.75rem 1.75rem;
    background: rgba(201, 163, 94, 0.2);
    border: 2px solid var(--brand-gold);
    border-radius: 50px;
    color: white;
    font-family: 'Jost', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

.schedule-btn:hover {
    background: var(--brand-gold);
    color: #18312e;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(201, 163, 94, 0.4);
}

.schedule-btn i {
    font-size: 1rem;
}

.business-hours-banner .btn-outline-light {
    border-width: 2px;
    font-weight: 500;
}

.business-hours-banner .btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: white;
}

/* ===================================
   MENU HEADER - REDESIGNED
   =================================== */
.menu-header {
    background: rgb(24, 49, 46);
    padding: 80px 0 60px;
    color: white;
    position: relative;
    overflow: hidden;
    margin-top: 0;
    z-index: 1;
}

.menu-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(201, 163, 94, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.menu-header .header-content {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.menu-header .header-text {
    flex: 1;
}

.menu-header .header-status {
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}

.menu-badge {
    display: inline-block;
    font-family: 'Jost', sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--brand-gold);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    position: relative;
    padding: 0 60px;
}

.menu-badge::before,
.menu-badge::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 45px;
    height: 1px;
    /* background: var(--brand-gold); */
}

.menu-badge::before {
    left: 0;
}

.menu-badge::after {
    right: 0;
}

.menu-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    font-weight: 600;
    color: #ffffff;
    line-height: 1.25;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.menu-subtitle {
    font-family: 'Jost', sans-serif;
    font-size: 1.0625rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin: 0;
    max-width: 650px;
}

/* Elegant Status Card for Header */
.elegant-status-card {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.5rem 2rem;
    background: linear-gradient(135deg, rgba(201, 163, 94, 0.15), rgba(201, 163, 94, 0.08));
    border: 2px solid rgba(201, 163, 94, 0.4);
    border-radius: 12px;
    backdrop-filter: blur(15px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.elegant-status-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--brand-gold), transparent);
}

.elegant-status-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(201, 163, 94, 0.3);
    border-color: var(--brand-gold);
}

.status-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--brand-gold), #b89350);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(201, 163, 94, 0.4);
}

.status-icon i {
    font-size: 1.5rem;
    color: #18312e;
}

.status-content {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.status-label {
    font-family: 'Jost', sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
}

.status-value {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.375rem;
    font-weight: 700;
    color: white;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.status-indicator-dot {
    width: 14px;
    height: 14px;
    background: #4CAF50;
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: 0 0 0 0 rgba(76, 175, 80, 0.7);
    animation: pulse-indicator 2s infinite;
}

@keyframes pulse-indicator {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(76, 175, 80, 0.7);
    }

    50% {
        box-shadow: 0 0 0 8px rgba(76, 175, 80, 0);
    }
}

.status-box {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-family: 'Jost', sans-serif;
    font-size: 0.9375rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border: 2px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 2;
}

.status-box.open {
    border-color: var(--brand-gold);
    background: rgba(201, 163, 94, 0.2);
}

.status-box i {
    font-size: 1.25rem;
    color: var(--brand-gold);
}

/* ===================================
   SEARCH & FILTER SECTIONS - REDESIGNED
   =================================== */
.search-section {
    margin-bottom: 40px;
}

.search-box {
    position: relative;
    max-width: 650px;
    margin: 0 auto;
}

.search-input {
    width: 100%;
    padding: 1rem 4.5rem 1rem 1.5rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.08);
    color: white;
    font-family: 'Jost', sans-serif;
    font-size: 0.9375rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.search-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.search-input:focus {
    outline: none;
    border-color: var(--brand-gold);
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 0 0 4px rgba(201, 163, 94, 0.15);
}

/* Compact status box next to search */
.search-status-box {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.4rem 0.75rem;
    padding: 0.5rem 0.9rem;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.25);
    border: 2px solid #b89350;
    color: rgba(255, 255, 255, 0.9);
    font-family: 'Jost', sans-serif;
    font-size: 0.8rem;
}

.search-status-main,
.search-status-time,
.search-status-next {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    white-space: nowrap;
}

.search-status-main {
    font-weight: 600;
}

.search-status-open .search-status-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #4CAF50;
}

.search-status-closed i {
    color: var(--brand-gold);
}

.search-status-time i,
.search-status-next i {
    color: var(--brand-gold);
    font-size: 0.85rem;
}

@media (max-width: 991.98px) {
    .search-status-box {
        justify-content: flex-start;
    }
}

.search-btn {
    position: absolute;
    right: 6px;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    background: var(--brand-gold);
    color: #18312e;
    font-size: 1.125rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-btn:hover {
    background: #b89350;
    transform: translateY(-50%) scale(1.05);
}

/* Filter Sections */
.filter-section {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.filter-title {
    font-family: 'Jost', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--brand-gold);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1rem;
}

.filter-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.filter-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.85);
    font-family: 'Jost', sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.filter-pill:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--brand-gold);
    transform: translateY(-2px);
    color: white;
}

.filter-pill.active {
    background: var(--brand-gold);
    border-color: var(--brand-gold);
    color: #18312e;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(201, 163, 94, 0.3);
}

.filter-pill .dietary-icon {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 2px solid;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.filter-text {
    line-height: 1;
    white-space: nowrap;
}

/* ===================================
   RESULTS INFO & LOADING
   =================================== */
.results-info {
    background: rgba(255, 255, 255, 0.08);
    padding: 1rem 1.25rem;
    border-radius: 8px;
    border-left: 3px solid var(--brand-gold);
    margin-bottom: 2rem;
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.9);
    font-family: 'Jost', sans-serif;
}

.loading-indicator {
    min-height: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.8);
}

.loading-indicator .spinner-border {
    width: 3rem;
    height: 3rem;
    border-color: var(--brand-gold);
    border-right-color: transparent;
}

/* ===================================
   MENU BLUR & OVERLAY EFFECTS
   =================================== */
.menu-blurred {
    position: relative;
    filter: blur(3px);
    pointer-events: none;
    user-select: none;
}

.menu-blurred::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
    pointer-events: none;
}

.closed-overlay-message {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1000;
    background: linear-gradient(135deg, #1A1A1A, #2d2d2d);
    color: white;
    padding: 40px 50px;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    text-align: center;
    min-width: 350px;
    animation: fadeInScale 0.5s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.8);
    }

    to {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
}

.closed-overlay-message h3 {
    font-weight: 700;
    margin-bottom: 15px;
    color: white;
}

.closed-overlay-message p {
    font-size: 1rem;
    opacity: 0.95;
    color: rgba(255, 255, 255, 0.85);
}

.closed-overlay-message .btn-outline-light {
    border-width: 2px;
    padding: 10px 24px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.closed-overlay-message .btn-outline-light:hover {
    background: white;
    color: #1A1A1A;
}

/* ===================================
   OPENING HOURS MODAL
   =================================== */
.opening-hours-list {
    max-width: 100%;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 8px;
    transition: all 0.2s ease;
}

.hours-row:hover {
    background: #f8f9fa;
}

.hours-row.today {
    background: linear-gradient(135deg, rgba(201, 163, 94, 0.15), rgba(201, 163, 94, 0.08));
    border-left: 4px solid var(--brand-gold);
    font-weight: 600;
}

.hours-row .day-name {
    font-weight: 500;
    color: var(--text-dark);
    display: flex;
    align-items: center;
}

.hours-row .day-hours {
    font-weight: bold;
    font-size: 14px;
}

.hours-row .text-success {
    color: #28a745 !important;
}

.hours-row .text-danger {
    color: #dc3545 !important;
}

.modal-header {
    background: linear-gradient(135deg, rgb(24, 49, 46), rgb(30, 60, 56));
    color: white;
}

.modal-header .btn-close {
    filter: brightness(0) invert(1);
}

/* ===================================
   DIETARY BADGE ICONS & COLORS
   =================================== */
/* Dietary Tags in Menu Items */
.dietary-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    align-items: center;
}

.dietary-tags .badge {
    font-size: 11px;
    padding: 4px 8px;
    border-radius: 12px;
}

/* Circular Dietary Badges for Menu Items */
.dietary-badge-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid;
    cursor: help;
    transition: all 0.3s ease;
}

.dietary-badge-circle:hover {
    transform: scale(1.1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

/* Icon containers for circles */
.dietary-icon-small {
    width: 16px;
    height: 16px;
    border-radius: 50%;
}

/* Color scheme for circular badges */
.dietary-badge-circle-veg {
    background-color: #4CAF50;
    border-color: #388E3C;
}

.dietary-badge-circle-non-veg {
    background-color: #E53935;
    border-color: #C62828;
}

.dietary-badge-circle-peanuts {
    background-color: #2196F3;
    border-color: #1976D2;
}

.dietary-badge-circle-cashew {
    background-color: #9C27B0;
    border-color: #7B1FA2;
}

.dietary-badge-circle-almonds {
    background-color: #FF9800;
    border-color: #F57C00;
}

.dietary-badge-circle-eggs {
    background-color: #FFFFFF;
    border-color: #757575;
}

.dietary-badge-circle-vegan {
    background-color: #00BFA5;
    border-color: #00897B;
}

.dietary-badge-circle-paneer {
    background-color: #FFD700;
    border-color: #FFA000;
}

.dietary-badge-circle-gluten {
    background-color: #212121;
    border-color: #000000;
}

/* Inner circle colors */
.dietary-icon-veg {
    background-color: #81C784;
}

.dietary-icon-non-veg {
    background-color: #EF5350;
}

.dietary-icon-peanuts {
    background-color: #64B5F6;
}

.dietary-icon-cashew {
    background-color: #BA68C8;
}

.dietary-icon-almonds {
    background-color: #FFB74D;
}

.dietary-icon-eggs {
    background-color: #E0E0E0;
}

.dietary-icon-vegan {
    background-color: #4DB6AC;
}

.dietary-icon-paneer {
    background-color: #FFE082;
}

.dietary-icon-gluten {
    background-color: #424242;
}

/* Dietary Filter Buttons with Circular Badges */
.filter-pill .dietary-icon {
    border-color: currentColor;
}

.dietary-badge-veg .dietary-icon {
    background-color: #4CAF50;
    border-color: #388E3C;
}

.dietary-badge-veg .dietary-icon::after {
    content: '';
    width: 10px;
    height: 10px;
    background-color: #81C784;
    border-radius: 50%;
    display: block;
}

.dietary-badge-non-veg .dietary-icon {
    background-color: #E53935;
    border-color: #C62828;
}

.dietary-badge-non-veg .dietary-icon::after {
    content: '';
    width: 10px;
    height: 10px;
    background-color: #EF5350;
    border-radius: 50%;
    display: block;
}

.dietary-badge-peanuts .dietary-icon {
    background-color: #2196F3;
    border-color: #1976D2;
}

.dietary-badge-peanuts .dietary-icon::after {
    content: '';
    width: 10px;
    height: 10px;
    background-color: #64B5F6;
    border-radius: 50%;
    display: block;
}

.dietary-badge-cashew .dietary-icon {
    background-color: #9C27B0;
    border-color: #7B1FA2;
}

.dietary-badge-cashew .dietary-icon::after {
    content: '';
    width: 10px;
    height: 10px;
    background-color: #BA68C8;
    border-radius: 50%;
    display: block;
}

.dietary-badge-almonds .dietary-icon {
    background-color: #FF9800;
    border-color: #F57C00;
}

.dietary-badge-almonds .dietary-icon::after {
    content: '';
    width: 10px;
    height: 10px;
    background-color: #FFB74D;
    border-radius: 50%;
    display: block;
}

.dietary-badge-eggs .dietary-icon {
    background-color: #FFFFFF;
    border-color: #757575;
}

.dietary-badge-eggs .dietary-icon::after {
    content: '';
    width: 10px;
    height: 10px;
    background-color: #E0E0E0;
    border-radius: 50%;
    display: block;
}

.dietary-badge-vegan .dietary-icon {
    background-color: #00BFA5;
    border-color: #00897B;
}

.dietary-badge-vegan .dietary-icon::after {
    content: '';
    width: 10px;
    height: 10px;
    background-color: #4DB6AC;
    border-radius: 50%;
    display: block;
}

.dietary-badge-paneer .dietary-icon {
    background-color: #FFD700;
    border-color: #FFA000;
}

.dietary-badge-paneer .dietary-icon::after {
    content: '';
    width: 10px;
    height: 10px;
    background-color: #FFE082;
    border-radius: 50%;
    display: block;
}

.dietary-badge-gluten .dietary-icon {
    background-color: #212121;
    border-color: #000000;
}

.dietary-badge-gluten .dietary-icon::after {
    content: '';
    width: 10px;
    height: 10px;
    background-color: #424242;
    border-radius: 50%;
    display: block;
}

/* Active state adjustments */
.filter-pill.active .dietary-icon {
    border-color: #18312e;
}

.filter-pill.active .dietary-icon::after {
    opacity: 0.8;
}

/* ===================================
   MENU ITEM CARDS - HOME PAGE STYLE
   =================================== */
.menu-card {
    background: rgba(255, 255, 255, 0.08);
    overflow: hidden;
    transition: all 0.4s ease;
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    height: 100%;
}

.menu-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    border-color: rgba(201, 163, 94, 0.4);
}

.menu-card-image {
    position: relative;
    overflow: hidden;
    height: 280px;
    background: #f5f5f5;
}

.menu-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.menu-badge {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    background: var(--brand-gold);
    color: #18312e;
    padding: 0.5rem 1rem;
    font-family: 'Jost', sans-serif;
    font-size: 0.625rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    z-index: 10;
}

.menu-card-body {
    padding: 1.25rem 1rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.menu-card-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.5rem;
    line-height: 1.25;
}

.menu-card-description {
    font-family: 'Jost', sans-serif;
    font-size: 0.82rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
    margin-bottom: 1rem;
    flex: 1;
}

.title-price-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.2rem;
}

.menu-price {
    font-family: 'Jost', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--brand-gold);
    white-space: nowrap;
    flex-shrink: 0;
    line-height: 1.3;
}

.menu-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    margin-top: auto;
    gap: 0.5rem;
    flex-wrap: wrap;
    /* Allow wrapping for long content */
    row-gap: 0.75rem;
    /* Gap when content wraps */
}

.menu-card-footer .menu-price {
    font-family: 'Jost', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--brand-gold);
    white-space: nowrap;
    flex-shrink: 0;
}

/* Order Button (for items with add-ons) */
.btn-order {
    font-family: 'Jost', sans-serif;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    /* padding: 0.75rem 2rem; */
    font-size: 0.875rem;
    font-weight: 600;
    border: 1.5px solid var(--brand-gold);
    background: transparent;
    color: var(--brand-gold);
    text-transform: uppercase;
    letter-spacing: 1.2px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border-radius: 2px;
    height: 42px;
    min-width: 140px;
    flex-grow: 1;
    /* Allow growing to fill space (especially when wrapped) */
}

.btn-order:hover {
    background: var(--brand-gold);
    color: #18312e;
}

.btn-order:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    border-color: rgba(255, 255, 255, 0.3);
    color: rgba(255, 255, 255, 0.5);
}

.btn-order:disabled:hover {
    background: transparent;
    color: rgba(255, 255, 255, 0.5);
}

/* Pre-Order Button Styling */
.btn-pre-order {
    border-style: dashed;
    border-width: 1.5px;
    background: rgba(201, 163, 94, 0.05);
    /* Very subtle fill */
}

.btn-pre-order:hover {
    background: rgba(201, 163, 94, 0.15);
    border-style: solid;
    color: var(--brand-gold);
}

.menu-card-actions {
    display: flex;
    gap: 0.5rem;
    width: 100%;
    justify-content: flex-end;
}

.btn-menu {
    font-family: 'Jost', sans-serif;
    display: inline-block;
    padding: 0.625rem 1.5rem;
    font-size: 0.75rem;
    font-weight: 500;
    border: 1px solid var(--brand-gold);
    background: transparent;
    color: var(--brand-gold);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-menu:hover {
    background: var(--brand-gold);
    color: #18312e;
}

.btn-menu:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    border-color: rgba(255, 255, 255, 0.3);
    color: rgba(255, 255, 255, 0.5);
}

.btn-menu:disabled:hover {
    background: transparent;
    color: rgba(255, 255, 255, 0.5);
}

/* Quantity Controls for Menu Items */
.quantity-cart-group {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: nowrap;
    flex-shrink: 0;
}

.quantity-selector {
    display: flex;
    align-items: center;
    background: transparent;
    border: 1.5px solid var(--brand-gold);
    border-radius: 2px;
    overflow: hidden;
    height: 32px;
}

.qty-btn {
    background: transparent;
    border: none;
    color: var(--brand-gold);
    width: 28px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0;
}

.qty-btn:hover {
    background: var(--brand-gold);
    color: #18312e;
}

.qty-btn:active {
    background: rgba(201, 163, 94, 0.8);
}

.qty-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.qty-input {
    width: 34px;
    height: 30px;
    border: none;
    border-left: 1.5px solid var(--brand-gold);
    border-right: 1.5px solid var(--brand-gold);
    background: transparent;
    color: white;
    text-align: center;
    font-weight: 600;
    font-size: 0.95rem;
    font-family: 'Jost', sans-serif;
}

.qty-input:focus {
    outline: none;
}

.btn-add-cart {
    background: transparent;
    border: 1.5px solid var(--brand-gold);
    color: var(--brand-gold);
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.8rem;
    border-radius: 2px;
    padding: 0;
    flex-shrink: 0;
}

.btn-add-cart:hover {
    background: var(--brand-gold);
    color: #18312e;
}

.btn-add-cart:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    border-color: rgba(255, 255, 255, 0.3);
    color: rgba(255, 255, 255, 0.5);
}

.btn-add-cart:disabled:hover {
    background: transparent;
    color: rgba(255, 255, 255, 0.5);
}

/* Old menu card styles - kept for backward compatibility */
.menu-item-card {
    transition: all 0.4s ease;
    border: none;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, .08);
    height: 100%;
    background: white;
}

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

.menu-item-img {
    height: 220px;
    overflow: hidden;
    position: relative;
    background: #f5f5f5;
}

.menu-item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.featured-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--brand-gold);
    color: #18312e;
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
    z-index: 1;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-family: 'Jost', sans-serif;
}

.menu-card-body {
    padding: 1rem !important;
}

.menu-card-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.menu-card-description {
    font-family: 'Jost', sans-serif;
    font-size: 0.875rem;
    /* line-height: 1.7;
    margin-bottom: 1rem; */
}

.menu-title-price {
    color: var(--brand-gold);
    font-weight: 700;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
}

/* ===================================
   CATEGORY TITLES & SECTIONS
   =================================== */
.menu-category-title {
    text-transform: uppercase;
    letter-spacing: .08em;
    font-size: 1.2rem;
    font-family: 'Cormorant Garamond', serif;
    text-align: center;
    margin-bottom: 2rem;
    color: white;
    position: relative;
    padding-bottom: .5rem;
}

.menu-category-title::after {
    content: "";
    width: 60px;
    height: 3px;
    background: var(--brand-gold);
    border-radius: 2px;
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
}

/* ===================================
   GRID SYSTEM
   =================================== */
#menuItemsContainer {
    display: flex !important;
    flex-wrap: wrap !important;
}


/* ===================================
   RESPONSIVE DESIGN
   =================================== */
@media (max-width: 991.98px) {
    .floating-cart-widget {
        right: 20px;
    }

    /* Menu Hero Banner Responsive */
    .menu-hero-banner {
        min-height: 200px;
        padding: 60px 0 40px;
    }

    .menu-badge::before,
    .menu-badge::after {
        width: 30px;
    }

    .menu-title {
        font-size: clamp(2.25rem, 5vw, 3.5rem);
    }

    .status-inline-content {
        gap: 1rem;
    }

    .status-inline-badge {
        padding: 0.75rem 1.5rem;
        font-size: 0.9375rem;
    }

    .btn-view-schedule {
        padding: 0.5rem 1rem;
        font-size: 0.75rem;
    }

    .status-banner-card {
        padding: 2rem 1.75rem;
        margin-top: 2rem;
    }

    .status-banner-icon {
        width: 65px;
        height: 65px;
    }

    .status-banner-icon i {
        font-size: 1.75rem;
    }

    .status-main-text {
        font-size: 1.75rem;
    }

    /* Status Bar Responsive */
    .status-bar-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .schedule-btn {
        width: 100%;
        justify-content: center;
    }

    /* Elegant Status Card Responsive */
    .elegant-status-card {
        padding: 1.25rem 1.5rem;
        gap: 1rem;
    }

    .status-icon {
        width: 45px;
        height: 45px;
    }

    .status-icon i {
        font-size: 1.25rem;
    }

    .status-value {
        font-size: 1.25rem;
    }

    .floating-cart-widget .cart-button {
        width: 70px;
        height: 70px;
    }

    .floating-cart-widget .cart-icon-wrapper i {
        font-size: 24px;
    }

    .menu-header {
        padding: 60px 0 50px;
    }

    .menu-header .header-content {
        flex-direction: column;
        text-align: center;
    }

    .menu-badge::before,
    .menu-badge::after {
        width: 30px;
    }

    .menu-title {
        font-size: 2.5rem;
    }

    .status-box {
        margin-top: 1.5rem;
    }

    .search-input {
        padding: 0.875rem 4rem 0.875rem 1.25rem;
        font-size: 0.875rem;
    }

    .search-btn {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }

    .filter-section {
        padding: 1.25rem;
    }

    .filter-pill {
        padding: 0.5rem 1rem;
        font-size: 0.8125rem;
    }
}

@media (max-width: 767.98px) {
    .floating-cart-widget {
        bottom: 20px;
        top: auto;
        right: 20px;
        transform: none;
    }

    .floating-cart-widget .cart-button {
        width: 65px;
        height: 65px;
    }

    .floating-cart-widget .cart-icon-wrapper i {
        font-size: 22px;
    }

    .floating-cart-widget .cart-badge {
        top: -6px;
        right: -10px;
        min-width: 18px;
        height: 18px;
        line-height: 18px;
        font-size: 10px;
    }

    /* Menu Hero Banner Mobile */
    .menu-hero-banner {
        min-height: 180px;
        padding: 50px 0 30px;
        text-align: center;
    }

    .menu-badge {
        padding: 0;
    }

    .menu-badge::before,
    .menu-badge::after {
        display: none;
    }

    .menu-subtitle {
        margin: 0 auto;
    }

    .status-inline-content {
        flex-direction: column;
        gap: 0.75rem;
    }

    .status-inline-badge {
        width: 100%;
        justify-content: center;
        padding: 0.75rem 1.25rem;
        font-size: 0.875rem;
    }

    .btn-view-schedule {
        width: 100%;
        justify-content: center;
        padding: 0.5rem 1rem;
        font-size: 0.75rem;
    }

    .status-banner-card {
        padding: 1.75rem 1.5rem;
        margin-top: 2.5rem;
    }

    .status-banner-icon {
        width: 60px;
        height: 60px;
    }

    .status-banner-icon i {
        font-size: 1.5rem;
    }

    .status-main-text {
        font-size: 1.5rem;
    }

    .status-time-info {
        font-size: 0.9375rem;
    }

    .view-schedule-btn {
        padding: 0.875rem 1.75rem;
        font-size: 0.875rem;
    }

    /* Status Bar Mobile */
    .hours-status-bar {
        padding: 0.875rem 0;
    }

    .status-badge {
        font-size: 1rem;
    }

    .pulse-dot {
        width: 10px;
        height: 10px;
    }

    .time-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
        font-size: 0.8125rem;
    }

    .time-separator {
        display: none;
    }

    .schedule-btn {
        padding: 0.625rem 1.5rem;
        font-size: 0.8125rem;
    }

    /* Elegant Status Card Mobile */
    .elegant-status-card {
        padding: 1rem 1.25rem;
        gap: 0.875rem;
    }

    .status-icon {
        width: 40px;
        height: 40px;
    }

    .status-icon i {
        font-size: 1.125rem;
    }

    .status-label {
        font-size: 0.6875rem;
    }

    .status-value {
        font-size: 1.125rem;
    }

    .status-indicator-dot {
        width: 12px;
        height: 12px;
    }

    .menu-header {
        padding: 50px 0 40px;
    }

    .menu-header .header-content {
        gap: 1.5rem;
        flex-direction: column;
        text-align: center;
    }

    .menu-badge {
        padding: 0;
    }

    .menu-badge::before,
    .menu-badge::after {
        display: none;
    }

    .menu-title {
        font-size: 2rem;
    }

    .menu-subtitle {
        font-size: 0.9375rem;
    }

    .header-status {
        width: 100%;
    }

    .elegant-status-card {
        width: 100%;
        justify-content: center;
    }

    .search-section {
        margin-bottom: 2rem;
    }

    .search-input {
        padding: 0.75rem 3.5rem 0.75rem 1rem;
        font-size: 0.8125rem;
    }

    .search-btn {
        width: 40px;
        height: 40px;
        font-size: 0.9375rem;
    }

    .filter-section {
        padding: 1rem;
        margin-bottom: 1rem;
    }

    .filter-title {
        font-size: 0.8125rem;
        margin-bottom: 0.75rem;
    }

    .filter-pills {
        gap: 0.5rem;
    }

    .filter-pill {
        padding: 0.5rem 0.875rem;
        font-size: 0.75rem;
    }

    .filter-pill .dietary-icon {
        width: 16px;
        height: 16px;
    }

    .menu-card-body {
        padding: 2rem 1.5rem;
    }

    .menu-card-title {
        font-size: 1.375rem;
    }

    .menu-price {
        font-size: 1.5rem;
    }

    .closed-overlay-message {
        min-width: 300px;
        padding: 30px 25px;
        margin: 0 15px;
    }

    .closed-overlay-message h3 {
        font-size: 1.5rem;
    }

    .closed-overlay-message .fa-3x {
        font-size: 2rem;
    }

    .hours-row {
        padding: 10px 12px;
        font-size: 0.875rem;
    }

    .menu-item-img {
        height: 200px;
    }

    .menu-card-image {
        height: 250px;
    }

    .menu-card-body {
        padding: 1.75rem 1.5rem;
    }

    .menu-card-title {
        font-size: 1.25rem;
    }

    .menu-card-description {
        font-size: 0.8125rem;
    }

    .menu-price {
        font-size: 1.375rem;
    }

    .btn-menu {
        padding: 0.5rem 1.25rem;
        font-size: 0.6875rem;
    }

    .menu-card-body {
        padding: 1.5rem !important;
    }
}

@media (max-width: 575.98px) {
    .business-hours-banner .status-indicator {
        display: none;
    }

    .closed-overlay-message {
        min-width: auto;
        width: calc(100% - 30px);
        padding: 25px 20px;
    }

    /* Menu Hero Banner Small Mobile */
    .menu-hero-banner {
        min-height: 160px;
        padding: 45px 0 25px;
    }

    .menu-title {
        font-size: 2rem;
    }

    .menu-subtitle {
        font-size: 0.9375rem;
    }

    .status-banner-card {
        padding: 1.5rem 1.25rem;
    }

    .status-banner-icon {
        width: 55px;
        height: 55px;
    }

    .status-banner-icon i {
        font-size: 1.375rem;
    }

    .status-label {
        font-size: 0.8125rem;
        letter-spacing: 1px;
    }

    .status-main-text {
        font-size: 1.375rem;
    }

    .status-time-info {
        font-size: 0.875rem;
    }

    .view-schedule-btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.8125rem;
    }

    .view-schedule-btn i {
        font-size: 1rem;
    }

    /* Status Bar Small Mobile */
    .status-badge {
        font-size: 0.9375rem;
        gap: 0.5rem;
    }

    .pulse-dot {
        width: 9px;
        height: 9px;
    }

    .time-info {
        font-size: 0.75rem;
    }

    .schedule-btn {
        padding: 0.5rem 1.25rem;
        font-size: 0.75rem;
        gap: 0.5rem;
    }

    .schedule-btn i {
        font-size: 0.875rem;
    }

    /* Elegant Status Card Small Mobile */
    .elegant-status-card {
        padding: 0.875rem 1rem;
        gap: 0.75rem;
    }

    .status-icon {
        width: 36px;
        height: 36px;
    }

    .status-icon i {
        font-size: 1rem;
    }

    .status-label {
        font-size: 0.625rem;
    }

    .status-value {
        font-size: 1rem;
    }

    .status-indicator-dot {
        width: 10px;
        height: 10px;
    }

    .menu-header {
        padding: 40px 0 30px;
    }

    .menu-title {
        font-size: 1.75rem;
    }

    .menu-subtitle {
        font-size: 0.875rem;
    }

    .search-input {
        padding: 0.625rem 3rem 0.625rem 0.875rem;
        font-size: 0.8125rem;
    }

    .search-btn {
        width: 36px;
        height: 36px;
        font-size: 0.875rem;
    }

    .filter-pill {
        padding: 0.4rem 0.75rem;
        font-size: 0.6875rem;
    }

    .filter-pill .dietary-icon {
        width: 14px;
        height: 14px;
    }

    .menu-item-img {
        height: 180px;
    }

    .menu-card-image {
        height: 220px;
    }

    .menu-card-body {
        padding: 1.5rem 1.25rem;
    }

    .menu-card-title {
        font-size: 1.125rem;
    }

    .menu-price {
        font-size: 1.25rem;
    }

    .menu-card-body {
        padding: 1.25rem !important;
    }

    .menu-card-title {
        font-size: 1.25rem;
    }

    .menu-title-price {
        font-size: 1.25rem;
    }
}


/* ===================================
   CATEGORY MENU BUTTON & SLIDE-OUT PANEL
   =================================== */

/* Search Box Wrapper with Category Button */
.search-box-wrapper {
    position: relative;
    max-width: 650px;
    margin: 0 auto;
    display: flex;
    gap: 12px;
    align-items: center;
}

/* Category Menu Button */
.category-menu-btn {
    width: 56px;
    height: 56px;
    flex-shrink: 0;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.08);
    color: var(--brand-gold);
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.category-menu-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--brand-gold), #b89350);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 50%;
}

.category-menu-btn:hover {
    border-color: var(--brand-gold);
    background: rgba(201, 163, 94, 0.15);
    transform: scale(1.05);
}

.category-menu-btn:hover::before {
    opacity: 1;
}

.category-menu-btn:active {
    transform: scale(0.95);
}

.category-menu-btn i {
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}

.category-menu-btn:hover i {
    color: #18312e;
}

.search-box {
    flex: 1;
    position: relative;
}

/* Category Panel Overlay & Container */
.category-panel {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    pointer-events: none;
    transition: all 0.3s ease;
}

.category-panel.active {
    pointer-events: all;
}

.category-panel-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.category-panel.active .category-panel-overlay {
    opacity: 1;
}

/* Category Panel Content */
.category-panel-content {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    max-width: 420px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    box-shadow: 4px 0 40px rgba(0, 0, 0, 0.5);
    transform: translateX(-100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.category-panel.active .category-panel-content {
    transform: translateX(0);
}

/* Category Panel Header */
.category-panel-header {
    padding: 2rem 1.75rem;
    background: linear-gradient(135deg, rgb(24, 49, 46), rgb(30, 60, 56));
    border-bottom: 2px solid rgba(201, 163, 94, 0.3);
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.category-panel-header::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100px;
    height: 2px;
    background: var(--brand-gold);
}

.category-panel-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.75rem;
    font-weight: 600;
    color: white;
    margin: 0;
    display: flex;
    align-items: center;
}

.category-panel-title i {
    color: var(--brand-gold);
    font-size: 1.5rem;
}

.category-panel-close {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
    color: white;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.category-panel-close:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--brand-gold);
    color: var(--brand-gold);
    transform: rotate(90deg);
}

/* Category Panel Body */
.category-panel-body {
    flex: 1;
    overflow-y: auto;
    padding: 1.5rem 0;
    scrollbar-width: thin;
    scrollbar-color: var(--brand-gold) rgba(255, 255, 255, 0.1);
}

.category-panel-body::-webkit-scrollbar {
    width: 6px;
}

.category-panel-body::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
}

.category-panel-body::-webkit-scrollbar-thumb {
    background: var(--brand-gold);
    border-radius: 3px;
}

.category-panel-body::-webkit-scrollbar-thumb:hover {
    background: #b89350;
}

/* Category List */
.category-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 0 1.25rem;
}

/* Category Item */
.category-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.125rem 1.25rem;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.category-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 0;
    background: linear-gradient(135deg, var(--brand-gold), #b89350);
    transition: width 0.3s ease;
}

.category-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(201, 163, 94, 0.4);
    transform: translateX(4px);
}

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

.category-item.active {
    background: linear-gradient(135deg, rgba(201, 163, 94, 0.2), rgba(201, 163, 94, 0.1));
    border-color: var(--brand-gold);
    box-shadow: 0 4px 16px rgba(201, 163, 94, 0.3);
}

.category-item.active::before {
    width: 4px;
}

/* Category Icon */
.category-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(201, 163, 94, 0.2), rgba(201, 163, 94, 0.1));
    border: 2px solid rgba(201, 163, 94, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.category-item:hover .category-icon,
.category-item.active .category-icon {
    background: var(--brand-gold);
    border-color: var(--brand-gold);
    transform: scale(1.1);
}

.category-icon i {
    font-size: 1.375rem;
    color: var(--brand-gold);
    transition: color 0.3s ease;
}

.category-item:hover .category-icon i,
.category-item.active .category-icon i {
    color: #18312e;
}

/* Category Info */
.category-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    position: relative;
    z-index: 1;
}

.category-name {
    font-family: 'Jost', sans-serif;
    font-size: 1.0625rem;
    font-weight: 600;
    color: white;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.category-desc {
    font-family: 'Jost', sans-serif;
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.4;
    transition: color 0.3s ease;
}

.category-item:hover .category-desc,
.category-item.active .category-desc {
    color: rgba(255, 255, 255, 0.85);
}

/* Category Arrow */
.category-arrow {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.3);
    flex-shrink: 0;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.category-item:hover .category-arrow,
.category-item.active .category-arrow {
    color: var(--brand-gold);
    transform: translateX(4px);
}

/* Mobile Responsive */
@media (max-width: 991.98px) {
    .search-box-wrapper {
        gap: 10px;
    }

    .category-menu-btn {
        width: 52px;
        height: 52px;
        font-size: 1.125rem;
    }

    .category-panel-content {
        max-width: 380px;
    }

    .category-panel-header {
        padding: 1.75rem 1.5rem;
    }

    .category-panel-title {
        font-size: 1.5rem;
    }

    .category-panel-title i {
        font-size: 1.375rem;
    }
}

@media (max-width: 767.98px) {
    .search-box-wrapper {
        gap: 8px;
    }

    .category-menu-btn {
        width: 48px;
        height: 48px;
        font-size: 1.0625rem;
    }

    .category-panel-content {
        max-width: 100%;
        width: 85%;
    }

    .category-panel-header {
        padding: 1.5rem 1.25rem;
    }

    .category-panel-title {
        font-size: 1.375rem;
    }

    .category-panel-close {
        width: 36px;
        height: 36px;
        font-size: 1.125rem;
    }

    .category-panel-body {
        padding: 1.25rem 0;
    }

    .category-list {
        gap: 0.375rem;
        padding: 0 1rem;
    }

    .category-item {
        padding: 1rem 1.125rem;
        gap: 0.875rem;
    }

    .category-icon {
        width: 44px;
        height: 44px;
    }

    .category-icon i {
        font-size: 1.25rem;
    }

    .category-name {
        font-size: 1rem;
    }

    .category-desc {
        font-size: 0.75rem;
    }
}

@media (max-width: 575.98px) {
    .search-box-wrapper {
        gap: 6px;
    }

    .category-menu-btn {
        width: 44px;
        height: 44px;
        font-size: 1rem;
    }

    .category-panel-content {
        width: 90%;
    }

    /* Responsive quantity controls */
    .quantity-cart-group {
        flex-direction: row;
        width: 100%;
        gap: 0.5rem;
        justify-content: flex-end;
    }

    .quantity-selector {
        flex: 0 1 auto;
    }

    .qty-btn {
        width: 30px;
        height: 34px;
    }

    .qty-input {
        width: 36px;
        height: 34px;
        font-size: 0.95rem;
    }

    .btn-add-cart {
        width: 32px;
        height: 32px;
        flex-shrink: 0;
    }

    .btn-order {
        width: 100%;
        padding: 0.75rem 1.5rem;
        min-width: auto;
    }

    .menu-card-footer {
        justify-content: stretch;
    }
}

.category-panel-header {
    padding: 1.25rem 1rem;
}

.category-panel-title {
    font-size: 1.25rem;
}

.category-panel-title i {
    font-size: 1.125rem;
}

.category-panel-close {
    width: 32px;
    height: 32px;
    font-size: 1rem;
}

.category-item {
    padding: 0.875rem 1rem;
    gap: 0.75rem;
}

.category-icon {
    width: 40px;
    height: 40px;
}

.category-icon i {
    font-size: 1.125rem;
}

.category-name {
    font-size: 0.9375rem;
}

.category-desc {
    font-size: 0.6875rem;
}


/* ===================================
   FILTER GROUPS & ENHANCED PANEL STYLES
   =================================== */

/* Filter Group Sections */
.filter-group {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 10px;
}

.filter-group:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.filter-group-title {
    font-family: 'Jost', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--brand-gold);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.filter-group-title i {
    color: var(--brand-gold);
}

/* ===================================
   DIETARY GRID
   =================================== */
.dietary-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
}

.dietary-filter-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 0.5rem;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.dietary-filter-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--brand-gold), #b89350);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.dietary-filter-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(201, 163, 94, 0.4);
    transform: translateY(-2px);
}

.dietary-filter-btn.active {
    background: linear-gradient(135deg, rgba(201, 163, 94, 0.25), rgba(201, 163, 94, 0.15));
    border-color: var(--brand-gold);
    box-shadow: 0 4px 12px rgba(201, 163, 94, 0.3);
}

.dietary-filter-btn.active::before {
    opacity: 0.1;
}

.dietary-filter-btn .dietary-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 2px solid;
    position: relative;
    z-index: 1;
    flex-shrink: 0;
}

.dietary-label {
    font-family: 'Jost', sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    text-align: center;
    line-height: 1.2;
    position: relative;
    z-index: 1;
}

.dietary-filter-btn.active .dietary-label {
    color: white;
    font-weight: 600;
}

/* ===================================
   RESTAURANT LIST
   =================================== */
.restaurant-list {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.restaurant-filter-btn {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    padding: 1rem 1.125rem;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.restaurant-filter-btn::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 0;
    background: linear-gradient(135deg, var(--brand-gold), #b89350);
    transition: width 0.3s ease;
}

.restaurant-filter-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(201, 163, 94, 0.4);
    transform: translateX(4px);
}

.restaurant-filter-btn:hover::before {
    width: 4px;
}

.restaurant-filter-btn.active {
    background: linear-gradient(135deg, rgba(201, 163, 94, 0.2), rgba(201, 163, 94, 0.1));
    border-color: var(--brand-gold);
    box-shadow: 0 4px 12px rgba(201, 163, 94, 0.3);
}

.restaurant-filter-btn.active::before {
    width: 4px;
}

.restaurant-filter-btn i:first-child {
    width: 32px;
    height: 32px;
    background: rgba(201, 163, 94, 0.15);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--brand-gold);
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.restaurant-filter-btn.active i:first-child {
    background: var(--brand-gold);
    color: #18312e;
}

.restaurant-filter-btn span {
    flex: 1;
    font-family: 'Jost', sans-serif;
    font-size: 0.9375rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    position: relative;
    z-index: 1;
}

.restaurant-filter-btn.active span {
    color: white;
    font-weight: 600;
}

.restaurant-filter-btn .check-icon {
    width: auto;
    height: auto;
    background: none;
    font-size: 1.125rem;
    color: transparent;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.restaurant-filter-btn.active .check-icon {
    color: var(--brand-gold);
}

/* ===================================
   PRICE RANGE
   =================================== */
.price-range-container {
    padding: 0.5rem 0;
}

.price-inputs {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.price-input-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
}

.price-input-group label {
    font-family: 'Jost', sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.price-input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    color: white;
    font-family: 'Jost', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.price-input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.price-input:focus {
    outline: none;
    border-color: var(--brand-gold);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(201, 163, 94, 0.1);
}

.price-separator {
    font-family: 'Jost', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 1.5rem;
}

.price-slider-container {
    position: relative;
    margin-bottom: 0.75rem;
}

.price-slider {
    width: 100%;
    height: 6px;
    border-radius: 3px;
    background: rgba(255, 255, 255, 0.1);
    outline: none;
    -webkit-appearance: none;
    appearance: none;
    cursor: pointer;
}

.price-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--brand-gold);
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(201, 163, 94, 0.4);
    transition: all 0.3s ease;
}

.price-slider::-webkit-slider-thumb:hover {
    transform: scale(1.2);
    box-shadow: 0 4px 12px rgba(201, 163, 94, 0.6);
}

.price-slider::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--brand-gold);
    cursor: pointer;
    border: none;
    box-shadow: 0 2px 8px rgba(201, 163, 94, 0.4);
    transition: all 0.3s ease;
}

.price-slider::-moz-range-thumb:hover {
    transform: scale(1.2);
    box-shadow: 0 4px 12px rgba(201, 163, 94, 0.6);
}

.price-labels {
    display: flex;
    justify-content: space-between;
    font-family: 'Jost', sans-serif;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
}

/* ===================================
   FILTER ACTIONS
   =================================== */
.filter-actions {
    display: flex;
    gap: 0.75rem;
    padding-top: 1.5rem;
    margin-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-clear-filters,
.btn-apply-filters {
    flex: 1;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    border: none;
    font-family: 'Jost', sans-serif;
    font-size: 0.9375rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-clear-filters {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.85);
}

.btn-clear-filters:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.4);
    color: white;
    transform: translateY(-2px);
}

.btn-apply-filters {
    background: linear-gradient(135deg, var(--brand-gold), #b89350);
    color: #18312e;
    border: 2px solid var(--brand-gold);
    box-shadow: 0 4px 12px rgba(201, 163, 94, 0.3);
}

.btn-apply-filters:hover {
    background: linear-gradient(135deg, #b89350, var(--brand-gold));
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(201, 163, 94, 0.4);
}

/* ===================================
   RESPONSIVE ADJUSTMENTS FOR NEW FILTERS
   =================================== */
@media (max-width: 767.98px) {
    .filter-group {
        margin-bottom: 1.5rem;
        padding-bottom: 1.25rem;
    }

    .filter-group-title {
        font-size: 0.8125rem;
    }

    .dietary-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.5rem;
    }

    .dietary-filter-btn {
        padding: 0.875rem 0.375rem;
        gap: 0.375rem;
    }

    .dietary-filter-btn .dietary-icon {
        width: 22px;
        height: 22px;
    }

    .dietary-label {
        font-size: 0.6875rem;
    }

    .restaurant-filter-btn {
        padding: 0.875rem 1rem;
        gap: 0.75rem;
    }

    .restaurant-filter-btn i:first-child {
        width: 28px;
        height: 28px;
        font-size: 0.9375rem;
    }

    .restaurant-filter-btn span {
        font-size: 0.875rem;
    }

    .price-inputs {
        gap: 0.75rem;
        margin-bottom: 1.25rem;
    }

    .price-input {
        padding: 0.625rem 0.875rem;
        font-size: 0.9375rem;
    }

    .filter-actions {
        gap: 0.625rem;
        padding-top: 1.25rem;
        margin-top: 1.25rem;
    }

    .btn-clear-filters,
    .btn-apply-filters {
        padding: 0.875rem 1.25rem;
        font-size: 0.875rem;
    }
}

@media (max-width: 575.98px) {
    .filter-group {
        margin-bottom: 1.25rem;
        padding-bottom: 1rem;
    }

    .dietary-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.375rem;
    }

    .dietary-filter-btn {
        padding: 0.75rem 0.25rem;
    }

    .dietary-filter-btn .dietary-icon {
        width: 20px;
        height: 20px;
    }

    .dietary-label {
        font-size: 0.625rem;
    }

    .restaurant-filter-btn {
        padding: 0.75rem 0.875rem;
    }

    .restaurant-filter-btn i:first-child {
        width: 26px;
        height: 26px;
        font-size: 0.875rem;
    }

    .restaurant-filter-btn span {
        font-size: 0.8125rem;
    }

    .price-input {
        padding: 0.5rem 0.75rem;
        font-size: 0.875rem;
    }

    .btn-clear-filters,
    .btn-apply-filters {
        padding: 0.75rem 1rem;
        font-size: 0.8125rem;
        gap: 0.375rem;
    }
}