/* JUDUL */
.judul {
padding: 0;
margin: 0;
}
.judul_menu {
    width: 30%;
    position: absolute;
    top: 25%;
    left: 5%;
}  
/* JUDUL */


/* KOTAK MENU */
.text {
    position: absolute;
    width: 230px;
    right: 10px;
    top: 10px;
}

.text h5 {
    font-size: 20px;
    font-family: 'Bree Serif', serif;
    color: #3e2723;
    font-weight: bolder;
}

.text h6 {
    font-size: 15px;
    font-family: 'Bree Serif', serif;
    color: #3e2723;
}

.hargo {
    position: absolute;
    display: flex;
    justify-content:space-between;
    width: 230px;
    right: 10px;
    bottom: 10px;
}

.hargo button {
    height: 40px;
    width: 80px;
    border: none;
}

.hargo h5 {
    font-size: 25px;
    font-family: 'Bree Serif', serif;
    color: #c0392b;
    font-weight: bold;
}

.hargo h6 {
    position: absolute;
    bottom: 30px;
    color: grey;
    font-size: 15;
}
/* KOTAK MENU */


/* CHECK OUT */
#cart-items button {
    border: none;
    padding: 4px 8px;
    margin-left: 4px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
}

#floating-cart {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #f4f4f4;
    border-top: 2px solid #ccc;
    padding: 10px 20px;
    border-radius: 1em;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    z-index: 999;
    box-shadow: 0 -2px 8px rgba(0,0,0,0.1);
    font-family: sans-serif;
    flex-wrap: wrap;
    height: 25vh;
}

#cart-items {
    height: 110px; /* Tetap, cukup untuk 2 item aja */
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.check {
    border: none;
    padding: 8px 16px;
    border-radius: 8px;
    font-weight: bold;
    margin-top: 5px;
}
/* CHECK OUT */


button {
    background: rgb(251, 197, 13);
    color: black;
    transition: all ease-in-out 0.1s;
}

button:hover {
    background:#c0392b;
    color: wheat;
    transform:scale(105%);
    transition: all ease-in-out 0.1s;
}

h1 {
    font-family: 'Bree Serif', serif;
    color: #3e2723;
    font-weight: bolder;
}