/* Order Menu Page Styles */

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #604020 0%, #604020 100%);
    padding: 100px 0 50px;
    margin-bottom: 40px;
}

.page-header h1 {
    color: white;
    font-weight: 700;
    font-size: 2.5rem;
    margin: 0;
}

.page-header .lead {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin: 10px 0 0 0;
}

/* Menu Card Image */
.menu-card-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

/* Modal Input Styling */
.modal-input-quantity {
    max-width: 80px;
}

/* Card image wrapper for overlays */
.card-img-wrap {
    position: relative;
    overflow: hidden;
    border-radius: calc(0.375rem - 1px) calc(0.375rem - 1px) 0 0;
}

/* Category badge */
.badge-category {
    background: rgba(59, 130, 246, 0.15) !important;
    color: #2563eb !important;
    font-weight: 600;
    font-size: 0.75rem;
    padding: 3px 10px;
    border-radius: 5px;
    border: 1px solid rgba(59, 130, 246, 0.3);
    display: inline-flex;
    align-items: center;
    line-height: 1.4;
    vertical-align: middle !important;
}

/* Rating badge inline */
.card-rating {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    background: rgba(107, 114, 128, 0.15);
    color: #6b7280;
    font-weight: 600;
    font-size: 0.75rem;
    padding: 3px 8px;
    border-radius: 5px;
    line-height: 1.4;
}
.card-rating .fa-star {
    color: #f4b400;
    font-size: 0.7rem;
}

/* Filter buttons */
.filter-btn {
    background: rgba(59, 130, 246, 0.1) !important;
    color: #2563eb !important;
    font-weight: 600;
    font-size: 0.8rem;
    padding: 5px 14px;
    border-radius: 6px;
    border: 1px solid rgba(59, 130, 246, 0.25);
    transition: all 0.2s ease;
    margin: 2px 3px;
}
.filter-btn:hover {
    background: rgba(59, 130, 246, 0.2) !important;
    border-color: rgba(59, 130, 246, 0.4);
}
.filter-btn.active {
    background: #2563eb !important;
    color: #fff !important;
    border-color: #2563eb;
}
    font-weight: 700;
    font-size: 0.8rem;
    padding: 3px 10px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 4px;
}
.card-rating .fa-star {
    font-size: 0.75rem;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .page-header {
        padding: 60px 0 30px;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .menu-card-image {
        height: 200px;
    }
}

@media (max-width: 576px) {
    .page-header {
        padding: 40px 0 20px;
    }

    .page-header h1 {
        font-size: 1.5rem;
    }

    .page-header .lead {
        font-size: 0.95rem;
    }

    .menu-card-image {
        height: 180px;
    }
}
