.cart-popup {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70%; /* Vergroot naar bredere popup */
    background: #5c2e00;
    color: white;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    z-index: 1000;
}

.cart-popup .popup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
}

.cart-popup .close-btn {
    cursor: pointer;
    font-size: 24px;
}

.cart-item {
    display: flex;
    align-items: center;
    margin: 20px 0;
}

.cart-item img {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    object-fit: cover;
    margin-right: 20px;
}

.cart-item .info {
    flex: 1;
    font-size: 18px;
    font-weight: 500;
}

.cart-item .quantity {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
}

.cart-item .quantity button {
    background: none;
    color: white;
    border: 1px solid white;
    border-radius: 50%;
    width: 28px;
    height: 28px;
    font-size: 20px;
    cursor: pointer;
}

.checkout-btn {
    display: block;
    margin-top: 30px;
    background: #fff3e6;
    color: #5c2e00;
    padding: 14px;
    text-align: center;
    border-radius: 12px;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
}


