.cart {
    margin: 20px;
}
h4 {
    text-transform: uppercase; /* Membuat teks menjadi uppercase */
    font-size: 20px; /* Mengatur ukuran font menjadi 20px */
}
.checkout-row {
    padding-top: 20px; /* Jarak dari atas */
    margin-bottom: 30px; /* Jarak bawah */
}

.delivery-address,
.order-detail {
    padding: 20px; /* Padding dalam agar konten tidak terlalu menempel */
    margin-bottom: 20px; /* Jarak antar elemen */
    /* border-radius: 8px; Biar lebih rapi */
    /* box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1); Efek bayangan untuk tampilan lebih elegan */
    background-color: white;
}
.delivery-address-input {
    margin-bottom: 15px;
}

.placeorder {
    background-color: white;
    padding: 8xp;
    margin-bottom: 16px;
    margin-top: 20px;
}
.btn-placeorder {
    margin-top: 16px;
    width: 100%;
    border-radius: 0;
    border: 1px solid #064438;
    background-color: white;
    color: #064438;
}
.btn-placeorder:hover {
    border-radius: 0;
    background-color: #064438;
    color: white;
}

.cart-item {
    margin-bottom: 24px;
}
.list-item {
    display: flex;
    align-items: center;
    font-size: 14px;
}
.quantity-input {
    display: inline-block;
    width: 60px;
}
.list-group-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.total {
    text-transform: uppercase;
    font-weight: bold;
}
.item-img {
    width: 25%; /* Set lebar gambar, jika sebelumnya menggunakan .col-3 (25% dari kontainer) */
    padding: 10px;
    box-sizing: border-box;
}

.item-desc {
    width: 75%; /* Set lebar deskripsi, jika sebelumnya menggunakan .col-9 (75% dari kontainer) */
    padding: 10px;
    box-sizing: border-box;
}

.item-img img {
    width: 100%; /* Membuat gambar responsif dan mengisi lebar item-img */
    height: auto;
}

.item-desc {
    display: flex;
    flex-direction: column; /* Membuat elemen-elemen dalam item-desc tampil secara vertikal */
    justify-content: space-between;
}

@media (max-width: 768px) {
    .checkout-row {
        flex-direction: column-reverse; /* Membalik urutan elemen hanya di dalam checkout-row */
    }
    .placeorder {
        margin-top: 24px;
    }
    .btn-placeorder {
        width: 100%;
    }
    .grand {
        margin-bottom: 24px;
    }
}
