body {
    background: #f5f7fa;
    color: #fff;
    padding-top: 60px;
    font-family: "Poppins", sans-serif;
    font-size: 14px;
}

/* HANYA untuk perangkat MOBILE */
@media (max-width: 768px) {
    body {
        padding-top: 110px; /* Footer mobile */
    }
}

/* Judul Kantin */
.header-box {
    background: #003366;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.4);
    margin-bottom: 25px;
}

/* Card Menu */
.menu-card {
    background: #ffffff;
    border: none;
    border-radius: 15px;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: 0.3s;
}

.menu-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}

.menu-card img {
    height: 150px;
    object-fit: cover;
}

.menu-body {
    padding: 15px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    text-align: center;
}

.menu-title {
    font-size: 16px;
    font-weight: 600;
    min-height: 40px;
    line-height: 20px;
    color: #222;
}

.harga {
    color: #1a73e8;
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 10px;
}

.btn-order {
    background: #1a73e8;
    color: #fff;
    border-radius: 25px;
    padding: 6px 18px;
}

.btn-order:hover {
    background: #155bb5;
}

.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;
}