.cart {
    text-align: center;
    padding: 30px;
    background: #f8f8f8;
    margin-top: 20px;
    border-radius: 10px;
}
.cart-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}
.cart-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 50%;
    background: white;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}
.cart-item:hover {
    transform: scale(1.05);
}
.cart-item img {
    width: 50px;
    height: 50px;
    border-radius: 5px;
}
.cart-item input {
    width: 50px;
    text-align: center;
}
.cart-total {
    margin-top: 20px;
}
.place-order {
    padding: 10px 20px;
    font-size: 16px;
    font-weight: bold;
    color: white;
    background: #ff5722;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease-in-out, transform 0.2s;
}
.place-order:hover {
    background: #e64a19;
    transform: scale(1.05);
}