/* FIRE TEXT EFFECT */
.fire-text {
    font-size: 40px;
    font-weight: bold;
    background: linear-gradient(orange, red, yellow);
    -webkit-background-clip: text;
    color: transparent;
    animation: fire 1s infinite alternate;
}

@keyframes fire {
    0% { text-shadow: 0 0 10px orange, 0 0 20px red; }
    50% { text-shadow: 0 0 20px yellow, 0 0 40px red; }
    100% { text-shadow: 0 0 30px orange, 0 0 60px red; }
}

/* Keranjang styling */
.cart-section {
    padding: 20px;
}

.cart-item {
    background: white;
    color: black;
    margin: 10px auto;
    padding: 10px;
    border-radius: 10px;
    width: 90%;
    max-width: 500px;
}

.qty-btn {
    padding: 5px 10px;
    margin: 5px;
    background: orange;
    border: none;
    cursor: pointer;
}

.delete-btn {
    background: red;
    color: white;
    border: none;
    padding: 5px 10px;
    cursor: pointer;
}

.alamat-box {
    margin: 15px;
}

textarea {
    width: 90%;
    max-width: 500px;
    height: 80px;
    border-radius: 8px;
    padding: 10px;
}