body {
    background-color: #ffffff;
    padding-bottom: 80px; /* Jarak untuk menghindari konten tertutup */
}

.btn-custom-outline {
    background-color: transparent;
    color: #00aa13;
    border: 0px solid #00aa13;
    font-weight: 500;
    font-size: 10px;
}

.btn-custom-outline:hover {
    background-color: #008a10;
    color: #fff;
    border: 0px solid #008a10;
}

.btn-custom {
    background-color: #fb0a18;
    color: #fff;
    font-weight: 700;
    font-size: 12px;
}

.btn-custom:hover {
    background-color: #d40814;
    color: #f1f1f1;
}

.food-item {
    margin-bottom: 20px;
    border-radius: 100px;
}

.food-item img {
    max-width: 100%;
    height: auto;
}

.order-button {
    width: 100%;
}

#varianModal {
    z-index: 1200; /* Lebih tinggi dari cartModal */
}

.navbar-bottom {
    position: fixed;
    bottom: 70px; /* Jarak dari bawah untuk memastikan di atas fixed-bottom */
    left: 0;
    width: 100%;
    background-color: #00aa13;
    color: #fff;
    box-shadow: 0 -1px 5px rgba(0, 0, 0, 0.1);
    border-radius: 25px;
    font-size: 10pt;
    padding: 4px 0;
    display: flex;
    justify-content: center;
    z-index: 1100; /* Pastikan lebih tinggi dari fixed-bottom */
    overflow: visible;
}

.fixed-bottom {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    font-size: 10pt;
    background-color: #d40814;
    color: #fff;
    box-shadow: 0 -1px 5px rgba(0, 0, 0, 0.1);
    z-index: 900; /* Z-index lebih rendah dari navbar-bottom */
}

.navbar-content {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.nav-link {
    border-radius: 50px;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    color: #fff;
    font-size: 20px;
    width: 100%;
    justify-content: space-between;
}

.carousel-item img {
    max-height: 400px;
    object-fit: cover;
}

.search-bar {
    margin-top: 40px;
    margin-bottom: 20px;
    margin-left: 20px;
    margin-right: 20px;
}

/* CSS untuk card modal */
#cartModal {
    position: fixed; /* Menempatkan card modal di posisi tetap di layar */
    top: 50%; /* Menempatkan card modal di tengah vertikal */
    left: 50%; /* Menempatkan card modal di tengah horizontal */
    transform: translate(-50%, -50%); /* Mengatur posisi card modal di tengah secara tepat */
    z-index: 1200; /* Nilai z-index yang lebih tinggi dari nav-bottom */
    
    padding: 20px; /* Padding di dalam card modal */
    border-radius: 8px; /* Sudut membulat pada card modal */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Bayangan di sekitar card modal */
  }
  