body {
    background: #f8f9fa;
    font-family: "Poppins", sans-serif;
    font-size: 14px;
}

/* Grid container agar semua row rapi */
.row {
    display: flex;
    flex-wrap: wrap;
}

/* Card menu */
.menu-card {
    border-radius: 15px;
    overflow: hidden;
    border: none;
    background: #ffffff;
    transition: 0.3s;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    height: 100%; /* agar sama tinggi */
}
.menu-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.12);
}

/* Gambar tetap proporsional */
.menu-card img {
    height: 150px;
    object-fit: cover;
    width: 100%;
}

/* Card body fleksibel agar semua card sama tinggi */
.menu-card .card-body {
    flex: 1; /* isi sisa tinggi card */
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* teks + harga di bawah */
}

/* Judul & harga */
.menu-card-title {
    font-weight: 600;
}
.price {
    color: #003366;
    font-weight: 600;
    font-size: 1.1rem;
}

/* Filter box */
.filter-box {
    background: white;
    padding: 15px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

/* Pagination */
.pagination .page-link {
    border-radius: 10px !important;
    color: #003366;
    font-weight: 500;
}
.pagination .active .page-link {
    background: #ff7b00 !important;
    color: white !important;
    border-color: #ff7b00 !important;
}

/* Bottom navbar */
.navbar-bottom {
    height: 60px;
    background: #ffffff;
    box-shadow: 0 -3px 15px rgba(0,0,0,0.08);
}
.navbar-bottom a {
    color: #666;
    font-size: 14px;
    font-weight: 500;
}
.navbar-bottom a.active {
    color: #ff7b00;
    font-weight: 700;
}

.icon-badge {
    position: relative;
    display: inline-block;
}
.icon-badge .badge {
    position: absolute;
    top: -5px;
    right: -8px;
    background: red;
    color: white;
    font-size: 11px;
    padding: 2px 5px;
    border-radius: 50%;
    font-weight: bold;
    line-height: 1;
    min-width: 18px;
    text-align: center;
}

.icon-badge1 {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.icon-badge1 i {
    position: relative;
}

.icon-badge1 .badge1 {
    position: absolute;
    top: 2px;
    right: 74px;
    background: red;
    color: white;
    font-size: 11px;
    padding: 2px 6px;
    border-radius: 50%;
    font-weight: bold;
    line-height: 1;
    min-width: 18px;
    text-align: center;
}

.icon-badge-container {
    position: relative;
    display: inline-block;
    font-size: 14px;
}

.icon-badge-container .badge2 {
    position: absolute;
    top: -6px;
    right: -10px;
    background: red;
    color: white;
    font-size: 11px;
    padding: 2px 6px;
    border-radius: 50%;
    font-weight: bold;
    line-height: 1;
    min-width: 18px;
    text-align: center;
}